jackhill/guix/guix.git
3 years agopack: Relocatable wrapper leaves root available to child processes.
Ludovic Courtès [Sat, 31 Oct 2020 22:02:33 +0000 (23:02 +0100)]
pack: Relocatable wrapper leaves root available to child processes.

Fixes <https://bugs.gnu.org/44261>.
Reported by Jan Nieuwenhuizen <janneke@gnu.org>.

* gnu/packages/aux-files/run-in-namespace.c (exec_in_user_namespace):
Add call to 'prctl'.  Call 'mount' for NEW_ROOT and define 'is_tmpfs'.
When IS_TMPFS is true, call 'umount' and 'rmdir' after 'waitpid';
otherwise, call 'rm_rf' only when 'waitpid' returns -1 the second time.
(exec_with_loader): Call 'prctl'.  Remove NEW_ROOT only when 'waitpid'
returns -1 the second time, otherwise leave it behind.
* tests/guix-pack-relocatable.sh (wait_for_file): New function.
Add test.

3 years agodoc: Add "Defining Package Variants" section.
Ludovic Courtès [Thu, 29 Oct 2020 22:35:35 +0000 (23:35 +0100)]
doc: Add "Defining Package Variants" section.

* doc/guix.texi (Defining Packages): Move documentation of
'package-input-rewriting' & co. to...
(Defining Package Variants): ... here.  New node.  Also document
'inherit' and 'options->transformation'.

3 years agotransformations: Raise '&formatted-message' exceptions instead of 'leave'.
Ludovic Courtès [Thu, 29 Oct 2020 22:40:14 +0000 (23:40 +0100)]
transformations: Raise '&formatted-message' exceptions instead of 'leave'.

* guix/transformations.scm (evaluate-replacement-specs)
(package-git-url, evaluate-git-replacement-specs)
(transform-package-source-git-url)
(transform-package-toolchain): Use 'raise' and 'formatted-message'
instead of 'leave'.

3 years agoguix build: Move transformation options to (guix transformations).
Ludovic Courtès [Thu, 29 Oct 2020 17:30:07 +0000 (18:30 +0100)]
guix build: Move transformation options to (guix transformations).

* guix/transformations.scm: New file.
* tests/scripts-build.scm: Rename to...
* tests/transformations.scm: ... this.
* Makefile.am (MODULES): Add 'guix/transformations.scm'.
(SCM_TESTS): Adjust to rename.
* guix/scripts/build.scm (numeric-extension?)
(tarball-base-name, <downloaded-file>, download-to-store*)
(compile-downloaded-file, package-with-source)
(transform-package-source, evaluate-replacement-specs)
(transform-package-inputs, transform-package-inputs/graft)
(%not-equal, package-git-url, evaluate-git-replacement-specs)
(transform-package-source-branch, transform-package-source-commit)
(transform-package-source-git-url, package-dependents/spec)
(package-toolchain-rewriting, transform-package-toolchain)
(transform-package-with-debug-info, transform-package-tests)
(%transformations, transformation-procedure, %transformation-options)
(show-transformation-options-help, options->transformation)
(package-transformations): Move to (guix transformations).
* guix/scripts/environment.scm: Adjust accordingly.
* guix/scripts/graph.scm: Likewise.
* guix/scripts/install.scm: Likewise.
* guix/scripts/pack.scm: Likewise.
* guix/scripts/package.scm: Likewise.
* guix/scripts/upgrade.scm: Likewise.
* po/guix/POTFILES.in: Add 'guix/transformations.scm'.

3 years agoguix build: 'options->transformation' no longer takes a 'store' parameter.
Ludovic Courtès [Wed, 28 Oct 2020 22:35:49 +0000 (23:35 +0100)]
guix build: 'options->transformation' no longer takes a 'store' parameter.

* guix/scripts/build.scm (transform-package-source)
(transform-package-inputs, transform-package-inputs/graft)
(transform-package-source-branch, transform-package-source-commit)
(transform-package-source-git-url, transform-package-toolchain)
(transform-package-with-debug-info, transform-package-tests): Remove
'store' parameter.
(options->transformation, options->derivations): Adjust accordingly.
* guix/scripts/environment.scm (options/resolve-packages): Likewise.
* guix/scripts/graph.scm (guix-graph): Likewise.
* guix/scripts/pack.scm (guix-pack): Likewise.
* guix/scripts/package.scm (transaction-upgrade-entry): Likewise.
(process-actions): Likewise.
* tests/scripts-build.scm ("options->transformation, no transformations")
("options->transformation, with-source, replacement"):
Adjust tests.
("options->transformation, with-source")
("options->transformation, with-source, with version")
("options->transformation, with-source, PKG=URI"): Use 'lower-object' to
compute the store file name of the source.
("options->transformation, with-source, no matches"): Remove
'with-store' and adjust accordingly.
("options->transformation, with-input"): Likewise.
("options->transformation, with-graft"): Likewise.
("options->transformation, with-branch"): Likewise.
("options->transformation, with-commit"): Likewise.
("options->transformation, with-git-url"): Likewise.
("options->transformation, with-git-url + with-branch"): Likewise.
("options->transformation, with-c-toolchain"): Likewise.
("options->transformation, with-c-toolchain twice"): Likewise.
("options->transformation, with-c-toolchain, no effect"): Likewise.
("options->transformation, with-debug-info"): Likewise.
("options->transformation, without-tests"): Likewise.

3 years agoguix build: Remove unnecessary (replacement #f).
Ludovic Courtès [Wed, 28 Oct 2020 15:40:08 +0000 (16:40 +0100)]
guix build: Remove unnecessary (replacement #f).

* guix/scripts/build.scm (package-with-source): Remove 'replacement'
field, which is innate since d5ec5ed7197d121130af6953378bcfd8929a9754.

3 years agoguix build: 'package-with-source' no longer takes a 'store' parameter.
Ludovic Courtès [Wed, 28 Oct 2020 15:37:35 +0000 (16:37 +0100)]
guix build: 'package-with-source' no longer takes a 'store' parameter.

* guix/scripts/build.scm (<downloaded-file>): New record type.
(download-to-store*): New variable.
(compile-downloaded-file): New procedure.
(package-with-source): Remove 'store' parameter.  Use 'downloaded-file'
instead of 'download-to-store'.
(transform-package-source): Adjust accordingly.

3 years agognu: Add python-asyncssh.
Lars-Dominik Braun [Tue, 28 Apr 2020 09:41:08 +0000 (11:41 +0200)]
gnu: Add python-asyncssh.

* gnu/packages/ssh.scm (python-asyncssh): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
3 years agognu: Add xstow.
Hendur Saga via Guix-patches via [Sun, 26 Jul 2020 02:21:41 +0000 (02:21 +0000)]
gnu: Add xstow.

* gnu/packages/package-management.scm (xstow): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
3 years agognu: Add font-openmoji
nixo [Tue, 27 Oct 2020 13:10:06 +0000 (14:10 +0100)]
gnu: Add font-openmoji

* gnu/packages/fonts.scm (font-openmoji): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
3 years agognu: sbcl-geco: Fix build.
Guillaume Le Vaillant [Sat, 31 Oct 2020 16:52:04 +0000 (17:52 +0100)]
gnu: sbcl-geco: Fix build.

* gnu/packages/patches/sbcl-geco-fix-organism-class.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/lisp-xyz.scm (sbcl-geco)[source]: Use it.

3 years agognu: gnome-builder: Fix the build.
Leo Prikler [Thu, 10 Sep 2020 18:26:10 +0000 (20:26 +0200)]
gnu: gnome-builder: Fix the build.

As reported in #43296, gnome-builder tries to be linked against the static
version of libselinux (propagated through glib/gio), failing to do so, as it
also wants to be a PIE.  To keep the PIE, link it against the dynamic library.

Fixes <https://bugs.gnu.org/43296>.

* gnu/packages/gnome.scm (gnome-builder)[arguments]: Add 'fix-ninja' phase.

Signed-off-by: Leo Famulari <leo@famulari.name>
3 years agognu: r-lme4: Update to 1.1-25.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:41 +0000 (13:45 +0100)]
gnu: r-lme4: Update to 1.1-25.

* gnu/packages/statistics.scm (r-lme4): Update to 1.1-25.

3 years agognu: r-quantreg: Update to 5.75.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:38 +0000 (13:45 +0100)]
gnu: r-quantreg: Update to 5.75.

* gnu/packages/statistics.scm (r-quantreg): Update to 5.75.

3 years agognu: r-vgam: Update to 1.1-4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:35 +0000 (13:45 +0100)]
gnu: r-vgam: Update to 1.1-4.

* gnu/packages/statistics.scm (r-vgam): Update to 1.1-4.

3 years agognu: r-flexmix: Update to 2.3-17.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:32 +0000 (13:45 +0100)]
gnu: r-flexmix: Update to 2.3-17.

* gnu/packages/statistics.scm (r-flexmix): Update to 2.3-17.

3 years agognu: r-statmod: Update to 1.4.35.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:29 +0000 (13:45 +0100)]
gnu: r-statmod: Update to 1.4.35.

* gnu/packages/statistics.scm (r-statmod): Update to 1.4.35.

3 years agognu: r-ztable: Update to 0.2.2.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:26 +0000 (13:45 +0100)]
gnu: r-ztable: Update to 0.2.2.

* gnu/packages/statistics.scm (r-ztable): Update to 0.2.2.
[propagated-inputs]: Remove r-moonbook; add r-rstudioapi.
[native-inputs]: Add r-knitr.

3 years agognu: r-e1071: Update to 1.7-4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:20 +0000 (13:45 +0100)]
gnu: r-e1071: Update to 1.7-4.

* gnu/packages/statistics.scm (r-e1071): Update to 1.7-4.

3 years agognu: r-pkgmaker: Update to 0.32.2.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:17 +0000 (13:45 +0100)]
gnu: r-pkgmaker: Update to 0.32.2.

* gnu/packages/statistics.scm (r-pkgmaker): Update to 0.32.2.
[propagated-inputs]: Remove r-bibtex, r-magrittr, and r-stringi.

3 years agognu: r-dt: Update to 0.16.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:10 +0000 (13:45 +0100)]
gnu: r-dt: Update to 0.16.

* gnu/packages/statistics.scm (r-dt): Update to 0.16.

3 years agognu: r-domc: Update to 1.3.7.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:07 +0000 (13:45 +0100)]
gnu: r-domc: Update to 1.3.7.

* gnu/packages/statistics.scm (r-domc): Update to 1.3.7.

3 years agognu: r-doparallel: Update to 1.0.16.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:04 +0000 (13:45 +0100)]
gnu: r-doparallel: Update to 1.0.16.

* gnu/packages/statistics.scm (r-doparallel): Update to 1.0.16.

3 years agognu: r-foreach: Update to 1.5.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:45:01 +0000 (13:45 +0100)]
gnu: r-foreach: Update to 1.5.1.

* gnu/packages/statistics.scm (r-foreach): Update to 1.5.1.

3 years agognu: r-iterators: Update to 1.0.13.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:58 +0000 (13:44 +0100)]
gnu: r-iterators: Update to 1.0.13.

* gnu/packages/statistics.scm (r-iterators): Update to 1.0.13.

3 years agognu: r-segmented: Update to 1.3-0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:55 +0000 (13:44 +0100)]
gnu: r-segmented: Update to 1.3-0.

* gnu/packages/statistics.scm (r-segmented): Update to 1.3-0.

3 years agognu: r-rmarkdown: Update to 2.5.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:52 +0000 (13:44 +0100)]
gnu: r-rmarkdown: Update to 2.5.

* gnu/packages/statistics.scm (r-rmarkdown): Update to 2.5.
[propagated-inputs]: Remove r-mime.

3 years agognu: r-rcpparmadillo: Update to 0.10.1.0.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:48 +0000 (13:44 +0100)]
gnu: r-rcpparmadillo: Update to 0.10.1.0.0.

* gnu/packages/statistics.scm (r-rcpparmadillo): Update to 0.10.1.0.0.

3 years agognu: r-ade4: Update to 1.7-16.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:45 +0000 (13:44 +0100)]
gnu: r-ade4: Update to 1.7-16.

* gnu/packages/statistics.scm (r-ade4): Update to 1.7-16.
[propagated-inputs]: Add r-progress.

3 years agognu: r-data-table: Update to 1.13.2.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:40 +0000 (13:44 +0100)]
gnu: r-data-table: Update to 1.13.2.

* gnu/packages/statistics.scm (r-data-table): Update to 1.13.2.

3 years agognu: r-formula: Update to 1.2-4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:37 +0000 (13:44 +0100)]
gnu: r-formula: Update to 1.2-4.

* gnu/packages/statistics.scm (r-formula): Update to 1.2-4.

3 years agognu: r-tibble: Update to 3.0.4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:34 +0000 (13:44 +0100)]
gnu: r-tibble: Update to 3.0.4.

* gnu/packages/statistics.scm (r-tibble): Update to 3.0.4.

3 years agognu: r-rlang: Update to 0.4.8.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:31 +0000 (13:44 +0100)]
gnu: r-rlang: Update to 0.4.8.

* gnu/packages/statistics.scm (r-rlang): Update to 0.4.8.

3 years agognu: r-r6: Update to 2.5.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:28 +0000 (13:44 +0100)]
gnu: r-r6: Update to 2.5.0.

* gnu/packages/statistics.scm (r-r6): Update to 2.5.0.

3 years agognu: r-labeling: Update to 0.4.2.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:25 +0000 (13:44 +0100)]
gnu: r-labeling: Update to 0.4.2.

* gnu/packages/statistics.scm (r-labeling): Update to 0.4.2.

3 years agognu: r-digest: Update to 0.6.27.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:22 +0000 (13:44 +0100)]
gnu: r-digest: Update to 0.6.27.

* gnu/packages/statistics.scm (r-digest): Update to 0.6.27.

3 years agognu: r-nlme: Update to 3.1-150.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:19 +0000 (13:44 +0100)]
gnu: r-nlme: Update to 3.1-150.

* gnu/packages/statistics.scm (r-nlme): Update to 3.1-150.

3 years agognu: r-kernsmooth: Update to 2.23-18.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:16 +0000 (13:44 +0100)]
gnu: r-kernsmooth: Update to 2.23-18.

* gnu/packages/statistics.scm (r-kernsmooth): Update to 2.23-18.

3 years agognu: r-modeldata: Update to 0.1.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:13 +0000 (13:44 +0100)]
gnu: r-modeldata: Update to 0.1.0.

* gnu/packages/cran.scm (r-modeldata): Update to 0.1.0.

3 years agognu: r-parsnip: Update to 0.1.4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:09 +0000 (13:44 +0100)]
gnu: r-parsnip: Update to 0.1.4.

* gnu/packages/cran.scm (r-parsnip): Update to 0.1.4.

3 years agognu: r-tidypredict: Update to 0.4.8.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:06 +0000 (13:44 +0100)]
gnu: r-tidypredict: Update to 0.4.8.

* gnu/packages/cran.scm (r-tidypredict): Update to 0.4.8.

3 years agognu: r-warp: Update to 0.2.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:03 +0000 (13:44 +0100)]
gnu: r-warp: Update to 0.2.0.

* gnu/packages/cran.scm (r-warp): Update to 0.2.0.

3 years agognu: r-workflows: Update to 0.2.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:44:00 +0000 (13:44 +0100)]
gnu: r-workflows: Update to 0.2.1.

* gnu/packages/cran.scm (r-workflows): Update to 0.2.1.

3 years agognu: r-igraph: Update to 1.2.6.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:57 +0000 (13:43 +0100)]
gnu: r-igraph: Update to 1.2.6.

* gnu/packages/cran.scm (r-igraph): Update to 1.2.6.

3 years agognu: r-rcppziggurat: Update to 0.1.6.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:54 +0000 (13:43 +0100)]
gnu: r-rcppziggurat: Update to 0.1.6.

* gnu/packages/cran.scm (r-rcppziggurat): Update to 0.1.6.

3 years agognu: r-cpp11: Update to 0.2.3.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:50 +0000 (13:43 +0100)]
gnu: r-cpp11: Update to 0.2.3.

* gnu/packages/cran.scm (r-cpp11): Update to 0.2.3.

3 years agognu: r-rismed: Update to 2.2.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:47 +0000 (13:43 +0100)]
gnu: r-rismed: Update to 2.2.

* gnu/packages/cran.scm (r-rismed): Update to 2.2.

3 years agognu: r-brms: Update to 2.14.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:44 +0000 (13:43 +0100)]
gnu: r-brms: Update to 2.14.0.

* gnu/packages/cran.scm (r-brms): Update to 2.14.0.

3 years agognu: r-iheatmapr: Update to 0.5.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:41 +0000 (13:43 +0100)]
gnu: r-iheatmapr: Update to 0.5.1.

* gnu/packages/cran.scm (r-iheatmapr): Update to 0.5.1.

3 years agognu: r-acet: Update to 1.8.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:38 +0000 (13:43 +0100)]
gnu: r-acet: Update to 1.8.1.

* gnu/packages/cran.scm (r-acet): Update to 1.8.1.

3 years agognu: r-rgdal: Update to 1.5-18.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:35 +0000 (13:43 +0100)]
gnu: r-rgdal: Update to 1.5-18.

* gnu/packages/cran.scm (r-rgdal): Update to 1.5-18.

3 years agognu: r-parameters: Update to 0.9.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:32 +0000 (13:43 +0100)]
gnu: r-parameters: Update to 0.9.0.

* gnu/packages/cran.scm (r-parameters): Update to 0.9.0.

3 years agognu: r-graphlayouts: Update to 0.7.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:28 +0000 (13:43 +0100)]
gnu: r-graphlayouts: Update to 0.7.1.

* gnu/packages/cran.scm (r-graphlayouts): Update to 0.7.1.

3 years agognu: r-leiden: Update to 0.3.4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:25 +0000 (13:43 +0100)]
gnu: r-leiden: Update to 0.3.4.

* gnu/packages/cran.scm (r-leiden): Update to 0.3.4.
[native-inputs]: Add r-knitr.

3 years agognu: r-kableextra: Update to 1.3.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:21 +0000 (13:43 +0100)]
gnu: r-kableextra: Update to 1.3.1.

* gnu/packages/cran.scm (r-kableextra): Update to 1.3.1.

3 years agognu: r-dalex: Update to 2.0.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:18 +0000 (13:43 +0100)]
gnu: r-dalex: Update to 2.0.1.

* gnu/packages/cran.scm (r-dalex): Update to 2.0.1.

3 years agognu: r-batchtools: Update to 0.9.14.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:15 +0000 (13:43 +0100)]
gnu: r-batchtools: Update to 0.9.14.

* gnu/packages/cran.scm (r-batchtools): Update to 0.9.14.

3 years agognu: r-sctransform: Update to 0.3.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:12 +0000 (13:43 +0100)]
gnu: r-sctransform: Update to 0.3.1.

* gnu/packages/cran.scm (r-sctransform): Update to 0.3.1.
[propagated-inputs]: Remove r-rcppeigen; add r-matrixstats and r-rcpparmadillo.

3 years agognu: r-bookdown: Update to 0.21.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:06 +0000 (13:43 +0100)]
gnu: r-bookdown: Update to 0.21.

* gnu/packages/cran.scm (r-bookdown): Update to 0.21.
[propagated-inputs]: Add r-yaml.

3 years agognu: r-ldheatmap: Update to 1.0-4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:43:02 +0000 (13:43 +0100)]
gnu: r-ldheatmap: Update to 1.0-4.

* gnu/packages/cran.scm (r-ldheatmap): Update to 1.0-4.

3 years agognu: r-haplo-stats: Update to 1.8.6.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:59 +0000 (13:42 +0100)]
gnu: r-haplo-stats: Update to 1.8.6.

* gnu/packages/cran.scm (r-haplo-stats): Update to 1.8.6.

3 years agognu: r-seqinr: Update to 4.2-4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:56 +0000 (13:42 +0100)]
gnu: r-seqinr: Update to 4.2-4.

* gnu/packages/cran.scm (r-seqinr): Update to 4.2-4.

3 years agognu: r-valr: Update to 0.6.2.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:53 +0000 (13:42 +0100)]
gnu: r-valr: Update to 0.6.2.

* gnu/packages/cran.scm (r-valr): Update to 0.6.2.

3 years agognu: r-pbdzmq: Update to 0.3-3.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:49 +0000 (13:42 +0100)]
gnu: r-pbdzmq: Update to 0.3-3.1.

* gnu/packages/cran.scm (r-pbdzmq): Update to 0.3-3.1.

3 years agognu: r-globals: Update to 0.13.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:46 +0000 (13:42 +0100)]
gnu: r-globals: Update to 0.13.1.

* gnu/packages/cran.scm (r-globals): Update to 0.13.1.

3 years agognu: r-fields: Update to 11.6.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:43 +0000 (13:42 +0100)]
gnu: r-fields: Update to 11.6.

* gnu/packages/cran.scm (r-fields): Update to 11.6.

3 years agognu: r-rnifti: Update to 1.2.3.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:40 +0000 (13:42 +0100)]
gnu: r-rnifti: Update to 1.2.3.

* gnu/packages/cran.scm (r-rnifti): Update to 1.2.3.

3 years agognu: r-nlp: Update to 0.2-1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:37 +0000 (13:42 +0100)]
gnu: r-nlp: Update to 0.2-1.

* gnu/packages/cran.scm (r-nlp): Update to 0.2-1.

3 years agognu: r-feature: Update to 1.2.14.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:34 +0000 (13:42 +0100)]
gnu: r-feature: Update to 1.2.14.

* gnu/packages/cran.scm (r-feature): Update to 1.2.14.
[propagated-inputs]: Remove r-misc3d and r-rgl.
[native-inputs]: Add r-knitr.

3 years agognu: r-lmertest: Update to 3.1-3.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:29 +0000 (13:42 +0100)]
gnu: r-lmertest: Update to 3.1-3.

* gnu/packages/cran.scm (r-lmertest): Update to 3.1-3.

3 years agognu: r-sjplot: Update to 2.8.6.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:26 +0000 (13:42 +0100)]
gnu: r-sjplot: Update to 2.8.6.

* gnu/packages/cran.scm (r-sjplot): Update to 2.8.6.

3 years agognu: r-effectsize: Update to 0.4.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:23 +0000 (13:42 +0100)]
gnu: r-effectsize: Update to 0.4.0.

* gnu/packages/cran.scm (r-effectsize): Update to 0.4.0.

3 years agognu: r-performance: Update to 0.5.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:20 +0000 (13:42 +0100)]
gnu: r-performance: Update to 0.5.1.

* gnu/packages/cran.scm (r-performance): Update to 0.5.1.

3 years agognu: r-bayestestr: Update to 0.7.5.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:17 +0000 (13:42 +0100)]
gnu: r-bayestestr: Update to 0.7.5.

* gnu/packages/cran.scm (r-bayestestr): Update to 0.7.5.

3 years agognu: r-emmeans: Update to 1.5.2-1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:14 +0000 (13:42 +0100)]
gnu: r-emmeans: Update to 1.5.2-1.

* gnu/packages/cran.scm (r-emmeans): Update to 1.5.2-1.

3 years agognu: r-magick: Update to 2.5.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:10 +0000 (13:42 +0100)]
gnu: r-magick: Update to 2.5.0.

* gnu/packages/cran.scm (r-magick): Update to 2.5.0.

3 years agognu: r-furrr: Update to 0.2.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:07 +0000 (13:42 +0100)]
gnu: r-furrr: Update to 0.2.1.

* gnu/packages/cran.scm (r-furrr): Update to 0.2.1.
[propagated-inputs]: Add r-ellipsis, r-lifecycle, and r-vctrs.

3 years agognu: r-deriv: Update to 4.1.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:42:01 +0000 (13:42 +0100)]
gnu: r-deriv: Update to 4.1.1.

* gnu/packages/cran.scm (r-deriv): Update to 4.1.1.

3 years agognu: r-argparse: Update to 2.0.3.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:58 +0000 (13:41 +0100)]
gnu: r-argparse: Update to 2.0.3.

* gnu/packages/cran.scm (r-argparse): Update to 2.0.3.
[native-inputs]: Add r-knitr.

3 years agognu: r-insight: Update to 0.10.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:54 +0000 (13:41 +0100)]
gnu: r-insight: Update to 0.10.0.

* gnu/packages/cran.scm (r-insight): Update to 0.10.0.

3 years agognu: r-abn: Update to 2.3-0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:50 +0000 (13:41 +0100)]
gnu: r-abn: Update to 2.3-0.

* gnu/packages/cran.scm (r-abn): Update to 2.3-0.
[propagated-inputs]: Remove r-boot, r-brglm, r-entropy, r-mass, and r-moments.

3 years agognu: r-brglm: Update to 0.7.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:46 +0000 (13:41 +0100)]
gnu: r-brglm: Update to 0.7.1.

* gnu/packages/cran.scm (r-brglm): Update to 0.7.1.

3 years agognu: r-rdpack: Update to 2.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:43 +0000 (13:41 +0100)]
gnu: r-rdpack: Update to 2.0.

* gnu/packages/cran.scm (r-rdpack): Update to 2.0.
[propagated-inputs]: Remove r-bibtex; add r-rbibutils.

3 years agognu: r-reticulate: Update to 1.18.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:39 +0000 (13:41 +0100)]
gnu: r-reticulate: Update to 1.18.

* gnu/packages/cran.scm (r-reticulate): Update to 1.18.

3 years agognu: r-dosnow: Update to 1.0.19.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:36 +0000 (13:41 +0100)]
gnu: r-dosnow: Update to 1.0.19.

* gnu/packages/cran.scm (r-dosnow): Update to 1.0.19.

3 years agognu: r-openxlsx: Update to 4.2.3.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:33 +0000 (13:41 +0100)]
gnu: r-openxlsx: Update to 4.2.3.

* gnu/packages/cran.scm (r-openxlsx): Update to 4.2.3.

3 years agognu: r-sna: Update to 2.6.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:29 +0000 (13:41 +0100)]
gnu: r-sna: Update to 2.6.

* gnu/packages/cran.scm (r-sna): Update to 2.6.

3 years agognu: r-network: Update to 1.16.1.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:26 +0000 (13:41 +0100)]
gnu: r-network: Update to 1.16.1.

* gnu/packages/cran.scm (r-network): Update to 1.16.1.

3 years agognu: r-xfun: Update to 0.19.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:23 +0000 (13:41 +0100)]
gnu: r-xfun: Update to 0.19.

* gnu/packages/cran.scm (r-xfun): Update to 0.19.

3 years agognu: r-cli: Update to 2.1.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:20 +0000 (13:41 +0100)]
gnu: r-cli: Update to 2.1.0.

* gnu/packages/cran.scm (r-cli): Update to 2.1.0.

3 years agognu: r-stringdist: Update to 0.9.6.3.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:17 +0000 (13:41 +0100)]
gnu: r-stringdist: Update to 0.9.6.3.

* gnu/packages/cran.scm (r-stringdist): Update to 0.9.6.3.

3 years agognu: r-recipes: Update to 0.1.14.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:14 +0000 (13:41 +0100)]
gnu: r-recipes: Update to 0.1.14.

* gnu/packages/cran.scm (r-recipes): Update to 0.1.14.

3 years agognu: r-broom: Update to 0.7.2.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:11 +0000 (13:41 +0100)]
gnu: r-broom: Update to 0.7.2.

* gnu/packages/cran.scm (r-broom): Update to 0.7.2.

3 years agognu: r-squarem: Update to 2020.5.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:07 +0000 (13:41 +0100)]
gnu: r-squarem: Update to 2020.5.

* gnu/packages/cran.scm (r-squarem): Update to 2020.5.

3 years agognu: r-sp: Update to 1.4-4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:04 +0000 (13:41 +0100)]
gnu: r-sp: Update to 1.4-4.

* gnu/packages/cran.scm (r-sp): Update to 1.4-4.

3 years agognu: r-ff: Update to 4.0.4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:41:01 +0000 (13:41 +0100)]
gnu: r-ff: Update to 4.0.4.

* gnu/packages/cran.scm (r-ff): Update to 4.0.4.

3 years agognu: r-getoptlong: Update to 1.0.4.
Ricardo Wurmus [Sat, 31 Oct 2020 12:40:58 +0000 (13:40 +0100)]
gnu: r-getoptlong: Update to 1.0.4.

* gnu/packages/cran.scm (r-getoptlong): Update to 1.0.4.

3 years agognu: r-ps: Update to 1.4.0.
Ricardo Wurmus [Sat, 31 Oct 2020 12:40:55 +0000 (13:40 +0100)]
gnu: r-ps: Update to 1.4.0.

* gnu/packages/cran.scm (r-ps): Update to 1.4.0.

3 years agognu: r-partykit: Update to 1.2-10.
Ricardo Wurmus [Sat, 31 Oct 2020 12:40:52 +0000 (13:40 +0100)]
gnu: r-partykit: Update to 1.2-10.

* gnu/packages/cran.scm (r-partykit): Update to 1.2-10.

3 years agognu: r-servr: Update to 0.20.
Ricardo Wurmus [Sat, 31 Oct 2020 12:40:48 +0000 (13:40 +0100)]
gnu: r-servr: Update to 0.20.

* gnu/packages/cran.scm (r-servr): Update to 0.20.