From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56801) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jF0oq-0002da-5l for guix-patches@gnu.org; Thu, 19 Mar 2020 15:27:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jF0oo-000266-TD for guix-patches@gnu.org; Thu, 19 Mar 2020 15:27:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37667) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jF0oo-00025x-PO for guix-patches@gnu.org; Thu, 19 Mar 2020 15:27:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jF0oo-0001ID-L9 for guix-patches@gnu.org; Thu, 19 Mar 2020 15:27:02 -0400 Subject: [bug#40138] Submission of Patch for Package Description for CRAN Package r-boa v1 Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56687) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jF0oG-0002SK-Ul for guix-patches@gnu.org; Thu, 19 Mar 2020 15:26:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jF0oF-0001hW-LT for guix-patches@gnu.org; Thu, 19 Mar 2020 15:26:28 -0400 Received: from mx1.riseup.net ([198.252.153.129]:55660) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jF0oF-0001em-BW for guix-patches@gnu.org; Thu, 19 Mar 2020 15:26:27 -0400 From: Naga Malleswari Message-ID: <7ac68ba9-3116-a370-90a6-283c5c8156a4@riseup.net> Date: Fri, 20 Mar 2020 00:56:18 +0530 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------8C1A9AA348638D20AD82CA4A" Content-Language: en-US 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: 40138@debbugs.gnu.org Cc: Danny Milosavljevic This is a multi-part message in MIME format. --------------8C1A9AA348638D20AD82CA4A Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit -- Regards NagaMalli --------------8C1A9AA348638D20AD82CA4A Content-Type: text/x-patch; charset=UTF-8; name="0001-gnu-Add-r-boa.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-Add-r-boa.patch" >From 46ffd31df3a72a44485343660f85b792ba6fc518 Mon Sep 17 00:00:00 2001 From: Naga Malleswari Date: Fri, 20 Mar 2020 00:46:45 +0530 Subject: [PATCH] gnu: Add r-boa. * gnu/packages/cran.scm (r-boa): New variable. --- gnu/packages/cran.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 2fc62edb4b..ea17709633 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20802,3 +20802,24 @@ statistics and p-values of the correlation coefficients.") scales and utilities, including a spell check function for plot label fields and an overall emphasis on typography.") (license license:expat))) + +(define-public r-boa + (package + (name "r-boa") + (version "1.1.8-2") + (source + (origin + (method url-fetch) + (uri (cran-uri "boa" version)) + (sha256 + (base32 + "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp")))) + (properties `((upstream-name . "boa"))) + (build-system r-build-system) + (home-page "http://www.jstatsoft.org/v21/i11") + (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC") + (description + "This package provides a menu-driven program and library of functions for +carrying out convergence diagnostics and statistical and graphical analysis of +@dfn{Markov chain Monte Carlo} (MCMC) sampling output.") + (license license:gpl2))) -- 2.25.1 --------------8C1A9AA348638D20AD82CA4A--