From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52380) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gzdJ0-0007yD-U5 for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gzdIy-0005B8-2i for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42214) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gzdIw-00059D-N1 for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gzdIw-0001cA-Ej for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:02 -0500 Subject: [bug#34692] [PATCH] gnu: add r-statcheck. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:51908) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gzdIA-0007Vb-R4 for guix-patches@gnu.org; Fri, 01 Mar 2019 03:13:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gzdDp-0006uQ-3P for guix-patches@gnu.org; Fri, 01 Mar 2019 03:08:50 -0500 Received: from mail-wr1-x432.google.com ([2a00:1450:4864:20::432]:37061) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gzdDk-0006jj-TV for guix-patches@gnu.org; Fri, 01 Mar 2019 03:08:41 -0500 Received: by mail-wr1-x432.google.com with SMTP id w6so21553692wrs.4 for ; Fri, 01 Mar 2019 00:08:35 -0800 (PST) Received: from lenovo.iit.local ([90.147.180.254]) by smtp.gmail.com with ESMTPSA id a9sm4181699wmm.10.2019.03.01.00.08.32 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 01 Mar 2019 00:08:33 -0800 (PST) From: =?UTF-8?Q?Nicol=C3=B2?= Balzarotti Date: Fri, 1 Mar 2019 09:07:56 +0100 Message-Id: <20190301080758.5548-6-anothersms@gmail.com> In-Reply-To: <20190301080758.5548-1-anothersms@gmail.com> References: <20190301080758.5548-1-anothersms@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 34692@debbugs.gnu.org --- gnu/packages/cran.scm | 38 +++++++++++++++++++++++++++++++------- 1 file changed, 31 insertions(+), 7 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 54031fa87a..111152d2d0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3736,19 +3736,43 @@ published results; and a routine for graphical display.") supports arbitrary vertex/edge/graph attributes.") (license license:gpl2+))) +(define-public r-statcheck + (package + (name "r-statcheck") + (version "1.3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "statcheck" version)) + (sha256 + (base32 + "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp")))) + (build-system r-build-system) + (propagated-inputs + `(("r-ggplot2" ,r-ggplot2) + ("r-plyr" ,r-plyr) + ("r-rmarkdown" ,r-rmarkdown))) + (home-page + "https://cran.r-project.org/web/packages/statcheck") + (synopsis + "Extract Statistics from Articles and Recompute p Values") + (description + "Extract statistics from articles and recompute p values.") + (license license:gpl2))) + (define-public r-statnet-common (package (name "r-statnet-common") (version "4.2.0") (source - (origin - (method url-fetch) - (uri (cran-uri "statnet.common" version)) - (sha256 - (base32 - "0q942g6kqmqxfss1cxb3yg8y5r1k1h5cyy99s1cfisrn6hqc6xhi")))) + (origin + (method url-fetch) + (uri (cran-uri "statnet.common" version)) + (sha256 + (base32 + "0q942g6kqmqxfss1cxb3yg8y5r1k1h5cyy99s1cfisrn6hqc6xhi")))) (properties - `((upstream-name . "statnet.common"))) + `((upstream-name . "statnet.common"))) (build-system r-build-system) (propagated-inputs `(("r-coda" ,r-coda))) -- 2.20.1