From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH 1/4] gnu: Add r-synchronicity. Date: Fri, 28 Oct 2016 14:25:57 +0200 Message-ID: <87bmy4hd7u.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33630) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c06DE-0004Pt-4v for guix-devel@gnu.org; Fri, 28 Oct 2016 08:24:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c06DA-0001k5-Ef for guix-devel@gnu.org; Fri, 28 Oct 2016 08:24:44 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:58624) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c06DA-0001jh-6k for guix-devel@gnu.org; Fri, 28 Oct 2016 08:24:40 -0400 Received: from ip-80-113-14-101.ip.prioritytelecom.net ([80.113.14.101]:19278 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1c06D9-00009d-8o for guix-devel@gnu.org; Fri, 28 Oct 2016 08:24:39 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/statistics.scm (r-synchronicity): New variable. --- gnu/packages/statistics.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index b15f9cf..9e2d4a9 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2787,6 +2787,29 @@ Fourier transform, fuzzy clustering, support vector machines, shortest path computation, bagged clustering, naive Bayes classifier, and more.") (license license:gpl2+))) +(define-public r-synchronicity + (package + (name "r-synchronicity") + (version "1.1.9.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "synchronicity" version)) + (sha256 + (base32 + "0d9skpwmsnkn4xb3f2kgyyv8bhdi0r9p1kj3cvi0s92fjjnpi00c")))) + (build-system r-build-system) + (propagated-inputs + `(("r-bh" ,r-bh) + ("r-bigmemory-sri" ,r-bigmemory-sri) + ("r-rcpp" ,r-rcpp))) + (home-page "http://www.bigmemory.org") + (synopsis "Boost mutex functionality in R") + (description "This package provides support for synchronization +via mutexes and may eventually support interprocess communication and +message passing.") + (license (list license:lgpl2.1 license:asl2.0)))) + (define-public r-nmf (package (name "r-nmf") -- 2.10.1