[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/05: gnu: r-pracma: Move to (gnu packages cran).
From: |
guix-commits |
Subject: |
03/05: gnu: r-pracma: Move to (gnu packages cran). |
Date: |
Wed, 27 Nov 2019 12:31:14 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 682768deb036b730c25694adbd81cd1574b37dfd
Author: zimoun <address@hidden>
Date: Wed Nov 27 18:07:02 2019 +0100
gnu: r-pracma: Move to (gnu packages cran).
* gnu/packages/maths.scm (r-pracma): Move from here...
* gnu/packages/cran.scm (r-pracma): ...to here.
Signed-off-by: Ricardo Wurmus <address@hidden>
---
gnu/packages/cran.scm | 20 +++++++++++++++++++-
gnu/packages/maths.scm | 18 ------------------
2 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 943cd0d..9a49602 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <address@hidden>
;;; Copyright © 2015 Andreas Enge <address@hidden>
;;; Copyright © 2016, 2017 Ben Woodcroft <address@hidden>
-;;; Copyright © 2017, 2018 Roel Janssen <address@hidden>
+;;; Copyright © 2016, 2017, 2018 Roel Janssen <address@hidden>
;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <address@hidden>
;;; Copyright © 2017 Raoul Bonnal <address@hidden>
;;; Copyright © 2018 Vijayalakshmi Vedantham <address@hidden>
@@ -15789,3 +15789,21 @@ routines designed for solving ODEs resulting from 1-D,
2-D and 3-D partial
differential equations (PDE) that have been converted to ODEs by numerical
differencing.")
(license license:gpl2+)))
+
+(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 9108150..c8e0e39 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2342,24 +2342,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")