From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id 2D5qOFU/Wl/pKwAA0tVLHw (envelope-from ) for ; Thu, 10 Sep 2020 14:59:33 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id 0GxDNFU/Wl9bHgAAbx9fmQ (envelope-from ) for ; Thu, 10 Sep 2020 14:59:33 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 4FB259406F7 for ; Thu, 10 Sep 2020 14:59:33 +0000 (UTC) Received: from localhost ([::1]:52196 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kGO2u-0005TK-3A for larch@yhetil.org; Thu, 10 Sep 2020 10:59:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:33590) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kGO2g-0005R9-TT; Thu, 10 Sep 2020 10:59:18 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:60241) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kGO2g-0003Zg-Go; Thu, 10 Sep 2020 10:59:18 -0400 Received: from [143.121.198.62] (port=49840 helo=cog147) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kGO2f-0003xs-Ez; Thu, 10 Sep 2020 10:59:18 -0400 Message-ID: <615028ae47b61baed63f4576fbfeb3afb66d2df8.camel@gnu.org> Subject: Re: branch master updated: gnu: Add r-useful. From: Roel Janssen To: Ricardo Wurmus Date: Thu, 10 Sep 2020 16:59:15 +0200 In-Reply-To: <871rjb6ilx.fsf@elephly.net> References: <20200909150001.9150.43391@vcs0.savannah.gnu.org> <871rjb6ilx.fsf@elephly.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.28.5-0ubuntu0.18.04.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: guix-devel@gnu.org, guix-commits@gnu.org Errors-To: guix-devel-bounces+larch=yhetil.org@gnu.org Sender: "Guix-devel" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-devel-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-devel-bounces@gnu.org X-Spam-Score: 0.99 X-TUID: nUHDo19DfDjv On Wed, 2020-09-09 at 18:05 +0200, Ricardo Wurmus wrote: > Hi Roel, > > > This is an automated email from the git hooks/post-receive script. > > > > roelj pushed a commit to branch master > > in repository guix. > > > > The following commit(s) were added to refs/heads/master by this > > push: > > new a9401b4 gnu: Add r-useful. > > a9401b4 is described below > > > > commit a9401b4c948552d6a5a95bbd295e61871f4c6d74 > > Author: Roel Janssen > > AuthorDate: Wed Sep 9 16:59:42 2020 +0200 > > > > gnu: Add r-useful. > > > > * gnu/packages/cran.scm (r-useful): New variable. > > --- > > gnu/packages/cran.scm | 30 ++++++++++++++++++++++++++++++ > > 1 file changed, 30 insertions(+) > > > > diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm > > index 3b13bbd..8f7e379 100644 > > --- a/gnu/packages/cran.scm > > +++ b/gnu/packages/cran.scm > > @@ -3724,6 +3724,36 @@ algorithm. The interface of @code{ucminf} > > is designed for easy interchange > > with the package @code{optim}.") > > (license license:gpl2+))) > > > > +(define-public r-useful > > + (package > > + (name "r-useful") > > + (version "1.2.6") > > + (source (origin > > + (method url-fetch) > > + (uri (cran-uri "useful" version)) > > + (sha256 > > + (base32 > > + "0n50v1q75k518sq23id14jphwla35q4sasahrnrnllwrachl67v > > 1")))) > > + (properties `((upstream-name . "useful"))) > > + (build-system r-build-system) > > + (propagated-inputs > > + `(("r-assertthat" ,r-assertthat) > > + ("r-dplyr" ,r-dplyr) > > + ("r-ggplot2" ,r-ggplot2) > > + ("r-magrittr" ,r-magrittr) > > + ("r-matrix" ,r-matrix) > > + ("r-plyr" ,r-plyr) > > + ("r-purrr" ,r-purrr) > > + ("r-scales" ,r-scales))) > > + (home-page "https://github.com/jaredlander/useful") > > + (synopsis "A Collection of Handy, Useful Functions") > > “guix lint” should have complained about the leading “A”. Please > also > use lowercase. Fixed in 811985a7e0b8e7aad5a3c3818482b06996c94d02. Kind regards, Roel Janssen