From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36258) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCOvQ-000759-83 for guix-patches@gnu.org; Thu, 12 Mar 2020 10:35:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCOvO-0008Nf-Vb for guix-patches@gnu.org; Thu, 12 Mar 2020 10:35:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51666) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jCOvO-0008NX-N5 for guix-patches@gnu.org; Thu, 12 Mar 2020 10:35:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jCOvO-0004nH-Ks for guix-patches@gnu.org; Thu, 12 Mar 2020 10:35:02 -0400 Subject: [bug#40040] Submission of Patch for Package Description for CRAN Package r-crochet Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:58665) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCMIo-0000ux-KA for guix-patches@gnu.org; Thu, 12 Mar 2020 07:47:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCMIn-0003Vi-3i for guix-patches@gnu.org; Thu, 12 Mar 2020 07:47:02 -0400 Received: from mx1.riseup.net ([198.252.153.129]:37550) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jCMIm-0003VL-Ph for guix-patches@gnu.org; Thu, 12 Mar 2020 07:47:01 -0400 From: Naga Malleswari Message-ID: <6f2765ba-6120-d07f-828b-c8d1c2609d6e@riseup.net> Date: Thu, 12 Mar 2020 17:16:49 +0530 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------B4007C28CCEAC4F6C11F24C2" 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: 40040@debbugs.gnu.org Cc: Danny Milosavljevic This is a multi-part message in MIME format. --------------B4007C28CCEAC4F6C11F24C2 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Hi I am submitting the patch file for CRAN Package Description (r-crochet). This is my first ever package submission, i have gone through maillists as reference to build this. -- Regards NagaMalli --------------B4007C28CCEAC4F6C11F24C2 Content-Type: text/x-patch; charset=UTF-8; name="0001-gnu-r-crochet-New-variable.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-r-crochet-New-variable.patch" >From af155a34ae96a4d190fdfb3658927f311c71314f Mon Sep 17 00:00:00 2001 From: Naga Malleswari Date: Thu, 12 Mar 2020 17:14:37 +0530 Subject: [PATCH] gnu: r-crochet: New variable. * gnu/packages/cran.scm (r-crochet): Added a New Package Description. --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8cc904612d..41c8055daa 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20752,3 +20752,29 @@ containing elevation data.") calculate the higher-order partial and semi-partial correlations but also with statistics and p-values of the correlation coefficients.") (license license:gpl2))) + +(define-public r-crochet + (package + (name "r-crochet") + (version "2.2.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "crochet" version)) + (sha256 + (base32 + "1cbv79nyycxk6f8ldcsnn2pvgxqlnrj0qs19nhafnq2clxy863k6")))) + (build-system r-build-system) + (home-page "https://github.com/agrueneberg/crochet") + (synopsis + "Implementation Helper for '[' and '[<-' of Custom Matrix-Like Types") + (description + "Functions to help implement the extraction / subsetting / +indexing function '[' and replacement function '[<-' of custom matrix-like +types (based on S3, S4, etc.), modeled as closely to the base matrix class +as possible (with tests to prove it).") + (license license:expat))) + + + + -- 2.20.1 --------------B4007C28CCEAC4F6C11F24C2--