guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: gnu: r-desolve: Move to (gnu packages cran).


From: guix-commits
Subject: 02/05: gnu: r-desolve: Move to (gnu packages cran).
Date: Wed, 27 Nov 2019 12:31:13 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 9bd56b1a77e7011a044e9da6d4f7a00226eb01e0
Author: zimoun <address@hidden>
Date:   Wed Nov 27 18:04:18 2019 +0100

    gnu: r-desolve: Move to (gnu packages cran).
    
    * gnu/packages/maths.scm (r-desolve): Move from here...
    * gnu/packages/cran.scm (r-desolve): ...to here.
    
    Signed-off-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/cran.scm  | 28 ++++++++++++++++++++++++++++
 gnu/packages/maths.scm | 28 ----------------------------
 2 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 62113ab..943cd0d 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -15761,3 +15761,31 @@ data.table.")
      "This package contains routines and documentation for solving quadratic
 programming problems.")
     (license license:gpl3+)))
+
+(define-public r-desolve
+  (package
+    (name "r-desolve")
+    (version "1.25")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "deSolve" version))
+       (sha256
+        (base32 "0735y3p5glhqx69rzrc8qgmvs7p7w0p98qxmvylb6bgqp6kp0cbp"))))
+    (properties `((upstream-name . "deSolve")))
+    (build-system r-build-system)
+    (native-inputs
+     `(("gfortran" ,gfortran)))
+    (home-page "https://desolve.r-forge.r-project.org/";)
+    (synopsis "Solvers for initial value problems of differential equations")
+    (description "This package provides functions that solve initial
+value problems of a system of first-order ordinary differential equations 
(ODE),
+of partial differential equations (PDE), of differential algebraic equations
+(DAE), and of delay differential equations.  The functions provide an interface
+to the FORTRAN functions lsoda, lsodar, lsode, lsodes of the ODEPACK 
collection,
+to the FORTRAN functions dvode and daspk and a C-implementation of solvers of
+the Runge-Kutta family with fixed or variable time steps.  The package contains
+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+)))
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index cf78d0b..9108150 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4384,34 +4384,6 @@ subspaces.  The method is well suited for optimizing 
objective functions that
 are noisy or are discontinuous at the solution.")
     (license license:gpl3+)))
 
-(define-public r-desolve
-  (package
-    (name "r-desolve")
-    (version "1.25")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (cran-uri "deSolve" version))
-        (sha256
-         (base32 "0735y3p5glhqx69rzrc8qgmvs7p7w0p98qxmvylb6bgqp6kp0cbp"))))
-    (properties `((upstream-name . "deSolve")))
-    (build-system r-build-system)
-    (native-inputs
-     `(("gfortran" ,gfortran)))
-    (home-page "https://desolve.r-forge.r-project.org/";)
-    (synopsis "Solvers for initial value problems of differential equations")
-    (description "This package provides functions that solve initial
-value problems of a system of first-order ordinary differential equations 
(ODE),
-of partial differential equations (PDE), of differential algebraic equations
-(DAE), and of delay differential equations.  The functions provide an interface
-to the FORTRAN functions lsoda, lsodar, lsode, lsodes of the ODEPACK 
collection,
-to the FORTRAN functions dvode and daspk and a C-implementation of solvers of
-the Runge-Kutta family with fixed or variable time steps.  The package contains
-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 tcalc
   (package
   (name "tcalc")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]