From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46033) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iUbe3-0002tO-EC for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iUbe1-0004k4-NT for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:07 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:49585) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iUbe1-0004jt-Js for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iUbdz-00082N-CV for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:05 -0500 Subject: [bug#38184] [PATCH 2/4] gnu: r-pracma: Move to (gnu packages cran). Resent-Message-ID: From: zimoun Date: Tue, 12 Nov 2019 20:15:31 +0100 Message-Id: <20191112191533.32371-3-zimon.toutoune@gmail.com> In-Reply-To: <20191112191533.32371-1-zimon.toutoune@gmail.com> References: <20191112191533.32371-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 38184@debbugs.gnu.org Cc: zimoun * gnu/packages/maths.scm (r-pracma): Move from here... * gnu/packages/cran.scm (r-pracma): ...to here. --- gnu/packages/cran.scm | 23 ++++++++++++++++++++++- gnu/packages/maths.scm | 18 ------------------ 2 files changed, 22 insertions(+), 19 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 67959c9280..ed416c4a8e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus ;;; Copyright © 2016, 2017 Ben Woodcroft -;;; Copyright © 2017, 2018 Roel Janssen +;;; Copyright © 2016, 2017, 2018 Roel Janssen ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2017 Raoul Bonnal ;;; Copyright © 2018 Vijayalakshmi Vedantham @@ -15666,3 +15666,24 @@ data.table.") "This package contains routines and documentation for solving quadratic programming problems.") (license license:gpl3+))) + +(define-public r-pracma + (package + (name "r-pracma") + (version "2.2.5") + (source + (origin + (method url-fetch) + (uri (cran-uri "pracma" version)) + (sha256 + (base32 + "0isd3s0i4mzmva8lkh0j76hwjy1w50q7d1n9lhxsnnkgalx3xs1g")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/pracma/") + (synopsis "Practical numerical math functions") + (description + "This package provides functions for numerical analysis and +linear algebra, numerical optimization, differential equations, plus some +special functions. It uses Matlab function names where appropriate to simplify +porting.") + (license license:gpl3+))) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index a4452af93e..3565b99e05 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2341,24 +2341,6 @@ sparse system of linear equations A x = b using Gaussian elimination.") (inputs (alist-delete "pt-scotch" (package-inputs mumps-openmpi))))) -(define-public r-pracma - (package - (name "r-pracma") - (version "2.2.5") - (source (origin - (method url-fetch) - (uri (cran-uri "pracma" version)) - (sha256 - (base32 "0isd3s0i4mzmva8lkh0j76hwjy1w50q7d1n9lhxsnnkgalx3xs1g")))) - (build-system r-build-system) - (home-page "https://cran.r-project.org/web/packages/pracma/") - (synopsis "Practical numerical math functions") - (description "This package provides functions for numerical analysis and -linear algebra, numerical optimization, differential equations, plus some -special functions. It uses Matlab function names where appropriate to simplify -porting.") - (license license:gpl3+))) - (define-public ruby-asciimath (package (name "ruby-asciimath") -- 2.23.0