diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-11-22 21:42:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-11-24 12:32:09 +0100 |
commit | eeeca2341d76a71951773245b279cc89025441c7 (patch) | |
tree | 24a67811b9536abd81ffb025d785b84fc0ca0715 /gnu/packages | |
parent | ffe149ccc5a1c0d06b4e6b81f970808fbf4025e8 (diff) | |
download | guix-eeeca2341d76a71951773245b279cc89025441c7.tar.gz |
gnu: r-with-tests: Update to 4.2.2.
* gnu/packages/statistics.scm (r-with-tests): Update to 4.2.2. [arguments]: Patch DESCRIPTION file of "tools" package to avoid non-deterministic line break.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/statistics.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 02c3b98ae6..75f19de4f3 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -206,7 +206,7 @@ This package also provides @command{xls2csv} to export Excel files to CSV.") (define r-with-tests (package (name "r-with-tests") - (version "4.2.1") + (version "4.2.2") (source (origin (method url-fetch) (uri (string-append "mirror://cran/src/base/R-" @@ -214,7 +214,7 @@ This package also provides @command{xls2csv} to export Excel files to CSV.") version ".tar.gz")) (sha256 (base32 - "0gv4di1x835i4nsy21vqw66c0blmmmvyjkixc5a8x117dm4dnljd")))) + "1x9xjl6fyzs8r72zigirp905ki50wzyw9rxf7iqsbbsixi12pxhg")))) (build-system gnu-build-system) (arguments `(#:disallowed-references (,tzdata-for-tests) @@ -310,7 +310,11 @@ as.POSIXct(if (\"\" != Sys.getenv(\"SOURCE_DATE_EPOCH\")) {\ (("\\(2008\\)\n") "(2008) ") ((" ``Software") "``Software") (("Data Analysis:.") "Data Analysis:\n") - (("Programming with R") " Programming with R")))) + (("Programming with R") " Programming with R")) + (substitute* "src/library/tools/DESCRIPTION.in" + (("codetools, methods, xml2, curl, commonmark, knitr, xfun, mathjaxr") + "codetools, methods, xml2, curl, commonmark, + knitr, xfun, mathjaxr")))) (add-before 'build 'set-locales (lambda _ (setlocale LC_ALL "C") |