From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38152) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fhwLL-0007rA-Ae for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fhwLG-0000B2-CJ for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49649) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fhwLG-0000Ay-7M for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fhwLG-00009M-1H for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:02 -0400 Subject: [bug#32259] [PATCH 1/4] gnu: Add r-doby. References: In-Reply-To: Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 24 Jul 2018 14:22:05 +0200 Message-ID: <20180724122208.24086-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32259@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/cran.scm (r-doby): New variable. --- gnu/packages/cran.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index fc4baa5b5..da9b67bff 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4646,3 +4646,35 @@ matches version and feature constraints.") write shebang scripts that gracefully accept positional and optional arguments and automatically generate usage notices.") (license license:gpl2+))) + +(define-public r-doby + (package + (name "r-doby") + (version "4.6-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "doBy" version)) + (sha256 + (base32 + "1y02awzid23bxz8hx6j8pxd6i7jaq8pdw3k60rag8y6m69incrw5")))) + (properties `((upstream-name . "doBy"))) + (build-system r-build-system) + (propagated-inputs + `(("r-dplyr" ,r-dplyr) + ("r-magrittr" ,r-magrittr) + ("r-mass" ,r-mass) + ("r-matrix" ,r-matrix) + ("r-plyr" ,r-plyr))) + (home-page "http://people.math.aau.dk/~sorenh/software/doBy/") + (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities") + (description + "This package contains: + +@itemize +@item facilities for working with grouped data: @code{do} + something to data stratified @code{by} some variables. +@item implementations of least-squares means, general linear contrasts, and +@item miscellaneous other utilities. +@end itemize") + (license license:gpl2+))) -- 2.18.0