From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46069) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iUbe9-0002yc-PF for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iUbe6-0004mL-5W for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:12 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:49587) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iUbe6-0004mB-2g for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:10 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iUbe2-00082e-EA for guix-patches@gnu.org; Tue, 12 Nov 2019 14:16:09 -0500 Subject: [bug#38184] [PATCH 4/4] gnu: r-desolve: Move to (gnu packages cran). Resent-Message-ID: From: zimoun Date: Tue, 12 Nov 2019 20:15:33 +0100 Message-Id: <20191112191533.32371-5-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-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-desolve): Move from here... * gnu/packages/cran.scm (r-desolve): ...to here. --- gnu/packages/cran.scm | 30 ++++++++++++++++++++++++++++++ gnu/packages/maths.scm | 29 ----------------------------- 2 files changed, 30 insertions(+), 29 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 48ddaadd8d..c62b8eb730 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -15710,3 +15710,33 @@ It solves unconstrained optimization problems using a simplex method on 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.24") + (source + (origin + (method url-fetch) + (uri (cran-uri "deSolve" version)) + (sha256 + (base32 + "0hkvspq0fp8j64l9zayab2l2nazazhwfgfym0jllh0xv5a12r99s")))) + (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 77bd5d246b..80645f47b9 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4343,35 +4343,6 @@ analysed.") (arguments '(#:configure-flags '("-DMCRL2_ENABLE_GUI_TOOLS=OFF"))))) -(define-public r-desolve - (package - (name "r-desolve") - (version "1.24") - (source - (origin - (method url-fetch) - (uri (cran-uri "deSolve" version)) - (sha256 - (base32 - "0hkvspq0fp8j64l9zayab2l2nazazhwfgfym0jllh0xv5a12r99s")))) - (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") -- 2.23.0