jackhill/guix/guix.git
6 years agoAdd (gnu store database).
Caleb Ristvedt [Sun, 27 May 2018 17:19:30 +0000 (19:19 +0200)]
Add (gnu store database).

* guix/config.scm.in (%store-database-directory): New variable.
* guix/store/database.scm: New file.
* tests/store-database.scm: New file.
* Makefile.am (STORE_MODULES): New variable.
(MODULES, MODULES_NOT_COMPILED): Adjust accordingly.
(SCM_TESTS) [HAVE_GUILE_SQLITE3]: Add tests/store-database.scm.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
6 years agobuild: Check for Guile-SQLite3.
Ludovic Courtès [Sun, 27 May 2018 13:43:52 +0000 (15:43 +0200)]
build: Check for Guile-SQLite3.

* m4/guix.m4 (GUIX_CHECK_GUILE_SQLITE3): New macro.
* configure.ac: Use it and define 'HAVE_GUILE_SQLITE3'.
* guix/self.scm (specification->package): Add "guile-sqlite3".
(compiled-guix)[guile-sqlite3]: New variable.
[dependencies]: Add it.

6 years agovm: Use 'with-extensions'.
Ludovic Courtès [Mon, 28 May 2018 21:42:28 +0000 (23:42 +0200)]
vm: Use 'with-extensions'.

* gnu/system/vm.scm (system-docker-image)[build]: Use
'with-extensions'.  Remove 'add-to-load-path' calls.

6 years agoprofiles: Use 'with-extensions'.
Ludovic Courtès [Mon, 28 May 2018 20:00:11 +0000 (22:00 +0200)]
profiles: Use 'with-extensions'.

* guix/profiles.scm (manual-database)[build]: Use 'with-extensions'.
Remove 'add-to-load-path' call.
* guix/man-db.scm: Use (gdbm) the normal way; remove 'module-autoload!'
call.

6 years agobootloader: grub: Use 'with-extensions'.
Ludovic Courtès [Mon, 28 May 2018 19:47:01 +0000 (21:47 +0200)]
bootloader: grub: Use 'with-extensions'.

* gnu/bootloader/grub.scm (svg->png): Use 'with-extensions'.  Remove
'add-to-load-path' calls.
* gnu/build/svg.scm: Use (rsvg) and (cairo) the normal way.  Remove
'module-autoload!' calls.

6 years agobootloader: grub: Simplify 'svg->png'.
Ludovic Courtès [Mon, 28 May 2018 16:27:07 +0000 (18:27 +0200)]
bootloader: grub: Simplify 'svg->png'.

* gnu/bootloader/grub.scm (svg->png): Remove now unneeded
  #:guile-for-build argument.

6 years agotests: ssh: Use 'with-extensions'.
Ludovic Courtès [Mon, 28 May 2018 16:23:24 +0000 (18:23 +0200)]
tests: ssh: Use 'with-extensions'.

* gnu/tests/ssh.scm (run-ssh-test)[test]: Wrap body in
'with-extensions'.  Remove %load-path manipulation code.

6 years agopack: Use 'with-extensions' when referring to (guix docker).
Ludovic Courtès [Mon, 28 May 2018 16:22:24 +0000 (18:22 +0200)]
pack: Use 'with-extensions' when referring to (guix docker).

* guix/docker.scm: Use module (json) the normal way.
* guix/scripts/pack.scm (docker-image)[build]: Wrap in
'with-extensions'.

6 years agogexp: Add 'with-extensions'.
Ludovic Courtès [Mon, 28 May 2018 16:14:37 +0000 (18:14 +0200)]
gexp: Add 'with-extensions'.

* guix/gexp.scm (<gexp>)[extensions]: New field.
(gexp-attribute): New procedure.
(gexp-modules): Write in terms of 'gexp-attribute'.
(gexp-extensions): New procedure.
(gexp->derivation): Add #:effective-version.
[extension-flags]: New procedure.
Honor extensions of EXP.
(current-imported-extensions): New syntax parameter.
(with-extensions): New macro.
(gexp): Honor CURRENT-IMPORTED-EXTENSIONS.
(compiled-modules): Add #:extensions and honor it.
(load-path-expression): Likewise.
(gexp->script, gexp->file): Honor extensions.
* tests/gexp.scm (%extension-package): New variable.
("gexp-extensions & ungexp")
("gexp-extensions & ungexp-splicing")
("gexp-extensions and literal Scheme object")
("gexp->derivation & with-extensions")
("program-file & with-extensions"): New tests.
* doc/guix.texi (G-Expressions): Document 'with-extensions'.

6 years agopack: Adjust test to expect relative symlinks.
Ludovic Courtès [Fri, 1 Jun 2018 13:17:41 +0000 (15:17 +0200)]
pack: Adjust test to expect relative symlinks.

Reported by Chris Marusich <cmmarusich@gmail.com>.
Fixes <https://bugs.gnu.org/31560>.

* tests/pack.scm ("self-contained-tarball"): Rename 'guile' to 'bin'.
Expect 'bin/Guile' to be a relative symlink.

6 years agotests: Fix arguments in pack test.
Ricardo Wurmus [Wed, 30 May 2018 07:55:28 +0000 (09:55 +0200)]
tests: Fix arguments in pack test.

This is a follow-up to commit 5ffac538aa604b71814ac74579626f0d3110b96e.

* tests/pack.scm (self-contained-tarball): Adjust arguments to
"self-contained-tarball".

6 years agogexp: 'compiled-modules' no longer overrides (guix build utils).
Ludovic Courtès [Fri, 1 Jun 2018 11:45:36 +0000 (13:45 +0200)]
gexp: 'compiled-modules' no longer overrides (guix build utils).

Until now 'compiled-modules' would override (guix build utils) with its
own.  Thus, when asked to build a different (guix build utils),
via #:module-path, it would fail badly because a (guix build utils)
module was already loaded and possibly incompatible with the new one.

This happened when running 'guix pull --branch=core-updates' from
current master: in 'core-updates', (guix build utils) exports
'ignore-error?' but in 'master' it does not.  Thus, 'guix pull' would
fail with:

  no binding `invoke-error?' in module (guix build utils)
  builder for `/gnu/store/…-module-import-compiled.drv' failed with exit code 1
  cannot build derivation `/gnu/store/…-compute-guix-derivation.drv': 1 dependencies couldn't be built

This patch fixes it.

* guix/gexp.scm (compiled-modules)[build-utils-hack?]: New variable.
[build]: Load MODULES/build/utils.scm when it exists.

6 years agognu: rust: Add support for building 32-bit packages on 64-bit hosts.
Robin Templeton [Tue, 29 May 2018 16:02:41 +0000 (12:02 -0400)]
gnu: rust: Add support for building 32-bit packages on 64-bit hosts.

* gnu/packages/rust.scm (rust-bootstrap, rust-1.23): Use
nix-system->gnu-triplet to determine the system type.
(rust-1.19): Use readelf instead of nm in the atomic-lock-free test.
(rust-1.23): Disable the cargo_test_env test. Disable parallel execution of
tests.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add git-annex.
Timothy Sample [Tue, 29 May 2018 16:07:54 +0000 (12:07 -0400)]
gnu: Add git-annex.

* gnu/packages/version-control.scm (git-annex): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add ghc-disk-free-space.
Timothy Sample [Wed, 21 Feb 2018 04:13:57 +0000 (23:13 -0500)]
gnu: Add ghc-disk-free-space.

* gnu/packages/haskell.scm (ghc-disk-free-space): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: ghc-psqueues: Allow building with newer versions of QuickCheck.
Timothy Sample [Tue, 20 Feb 2018 07:56:58 +0000 (02:56 -0500)]
gnu: ghc-psqueues: Allow building with newer versions of QuickCheck.

* gnu/packages/haskell.scm (ghc-psqueues)[arguments]: Add configure
flag to allow newer versions of QuickCheck.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add ghc-safesemaphore.
Timothy Sample [Tue, 20 Feb 2018 05:25:04 +0000 (00:25 -0500)]
gnu: Add ghc-safesemaphore.

* gnu/packages/haskell.scm (ghc-safesemaphore): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add ghc-esqueleto.
Timothy Sample [Tue, 20 Feb 2018 05:12:21 +0000 (00:12 -0500)]
gnu: Add ghc-esqueleto.

* gnu/packages/haskell.scm (ghc-esqueleto): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add ghc-ifelse.
Timothy Sample [Tue, 20 Feb 2018 00:08:28 +0000 (19:08 -0500)]
gnu: Add ghc-ifelse.

* gnu/packages/haskell.scm (ghc-ifelse): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add ghc-feed.
Timothy Sample [Tue, 20 Feb 2018 00:07:44 +0000 (19:07 -0500)]
gnu: Add ghc-feed.

* gnu/packages/haskell.scm (ghc-feed): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add ghc-bloomfilter.
Timothy Sample [Mon, 19 Feb 2018 17:58:48 +0000 (12:58 -0500)]
gnu: Add ghc-bloomfilter.

* gnu/package/haskell.scm (ghc-bloomfilter): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agoservices: Add hpcguix-web.
Rouby Pierre-Antoine [Wed, 30 May 2018 09:47:04 +0000 (11:47 +0200)]
services: Add hpcguix-web.

* gnu/service/web.scm (<hpcguix-web-configuration>): New record-type.
  (%hpcguix-web-accounts): New variable.
  (%hpcguix-web-activation,hpcguix-web-shepherd-service,
  hpcguix-web-service-type): New procedures.
* gnu/tests/web.scm (run-hpcguix-web-server-test): New procedure.
  (%hpcguix-web-specs, %hpcguix-web-os, %test-hpcguix-web): New variable.
* doc/guix.texi (Web Services): Add 'hpcguix-web'.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add hpcguix-web.
Rouby Pierre-Antoine [Wed, 30 May 2018 09:41:46 +0000 (11:41 +0200)]
gnu: Add hpcguix-web.

* gnu/package/web.scm (hpcguix-web): New variable.

Signed-off-by: Ludovic Courtès <ludovic.courtes@inria.fr>
6 years agomarionette: Add 'wait-for-tcp-port'.
Ludovic Courtès [Fri, 1 Jun 2018 08:01:05 +0000 (10:01 +0200)]
marionette: Add 'wait-for-tcp-port'.

* gnu/build/marionette.scm (wait-for-tcp-port): New procedure.
* gnu/tests/dict.scm (run-dicod-test)["connect inside"]: Use it instead
of the inline loop.

6 years agognu: emacs-w3m: Update and allow builds with Emacs 26.
Ludovic Courtès [Thu, 31 May 2018 20:54:31 +0000 (22:54 +0200)]
gnu: emacs-w3m: Update and allow builds with Emacs 26.

* gnu/packages/emacs.scm (emacs-w3m)[source]: Grab the source from
github.com.
[native-inputs]: Add TEXINFO.
[arguments]: Add 'support-emacs!' phase.  In 'patch-exec-paths' phase,
make w3m.el and w3m-image.el writable.  Remove substitution for
'w3m-image-viewer', which no longer exists.

6 years agognu: sddm: Fix CMake build.
Stefan Stefanović [Fri, 1 Jun 2018 10:09:23 +0000 (12:09 +0200)]
gnu: sddm: Fix CMake build.

* gnu/packages/display-managers.scm (sddm): Fix CMake build.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/patches/sddm-fix-build-with-qt-5.11-1024.patch: New file.

Signed-off-by: Rutger Helling <rhelling@mykolab.com>
6 years agoscripts: system: Sort profile generations in reverse order.
Mathieu Othacehe [Tue, 17 Apr 2018 07:23:00 +0000 (09:23 +0200)]
scripts: system: Sort profile generations in reverse order.

* guix/scripts/system.scm (profile-boot-parameters): Reverse
generation-numbers list. This allows old generations to be listed from most
recent to oldest in bootloaders configuration files.

6 years agognu: prosody: Update to 0.10.2 [fixes CVE-2018-10847].
Leo Famulari [Thu, 31 May 2018 21:56:38 +0000 (17:56 -0400)]
gnu: prosody: Update to 0.10.2 [fixes CVE-2018-10847].

* gnu/packages/messaging.scm (prosody): Update to 0.10.2.

6 years agognu: Add emacs-zotxt.
Konrad Hinsen [Mon, 28 May 2018 11:07:02 +0000 (13:07 +0200)]
gnu: Add emacs-zotxt.

* gnu/packages/emacs.scm (emacs-zotxt): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add emacs-org-caldav.
Konrad Hinsen [Mon, 28 May 2018 08:42:37 +0000 (10:42 +0200)]
gnu: Add emacs-org-caldav.

* gnu/packages/emacs.scm (emacs-org-caldav): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: Add python-bigfloat.
Konrad Hinsen [Mon, 28 May 2018 08:30:38 +0000 (10:30 +0200)]
gnu: Add python-bigfloat.

* gnu/packages/python.scm (python-bigfloat, python2-bigfloat): New
variables.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agognu: bear: Fix python path.
Fis Trivial [Tue, 15 May 2018 12:10:11 +0000 (12:10 +0000)]
gnu: bear: Fix python path.

* gnu/packages/build-tools.scm (bear)
[inputs]: Add python-wrapper.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
6 years agorecords: Make a couple of procedures available at expansion time.
Ludovic Courtès [Thu, 31 May 2018 15:32:22 +0000 (17:32 +0200)]
records: Make a couple of procedures available at expansion time.

* guix/records.scm (current-abi-identifier, abi-check): Wrap in
'eval-when'.

6 years agosystem: 'read-boot-parameters' provides a more meaningful warning.
Ludovic Courtès [Thu, 31 May 2018 15:31:19 +0000 (17:31 +0200)]
system: 'read-boot-parameters' provides a more meaningful warning.

'system' here was bound to Guile's 'system' procedure.

* gnu/system.scm (read-boot-parameters): Fix argument for fallback
warning.

6 years agofile-systems: Always wait for devices to show up.
Ludovic Courtès [Thu, 31 May 2018 14:52:01 +0000 (16:52 +0200)]
file-systems: Always wait for devices to show up.

Previously, 'canonicalize-device-spec' would wait for devices when they
were specified as a label or UUID, but would not wait when the user
passed a "/dev" file name directly.  This could cause problems when
the /dev node takes a while to show up.

* gnu/build/file-systems.scm (canonicalize-device-spec): Add 'resolve'
call in the 'string?' case.

6 years agoself: Reduce the set of dependencies.
Ludovic Courtès [Thu, 31 May 2018 14:47:19 +0000 (16:47 +0200)]
self: Reduce the set of dependencies.

By mistake we were adding more dependencies than needed to the Scheme
derivations.

* guix/self.scm (compiled-guix)[dependencies]: Use
'package-transitive-propagated-inputs', not 'package-transitive-inputs'.

6 years agognu: r-servr: Update to 0.10.
Ricardo Wurmus [Thu, 31 May 2018 11:09:44 +0000 (13:09 +0200)]
gnu: r-servr: Update to 0.10.

* gnu/packages/web.scm (r-servr): Update to 0.10.
[native-inputs]: Remove r-rcpp.

6 years agognu: r-seurat: Update to 2.3.1.
Ricardo Wurmus [Thu, 31 May 2018 10:53:24 +0000 (12:53 +0200)]
gnu: r-seurat: Update to 2.3.1.

* gnu/packages/bioinformatics.scm (r-seurat): Update to 2.3.1.
[propagated-inputs]: Remove r-gridextra; add r-reticulate.

6 years agognu: r-shiny: Update to 1.1.0.
Ricardo Wurmus [Thu, 31 May 2018 10:38:54 +0000 (12:38 +0200)]
gnu: r-shiny: Update to 1.1.0.

* gnu/packages/web.scm (r-shiny): Update to 1.1.0.
[source]: Fetch from git.
[propagated-inputs]: Add r-crayon.

6 years agognu: r-rjson: Update to 0.2.19.
Ricardo Wurmus [Thu, 31 May 2018 10:38:33 +0000 (12:38 +0200)]
gnu: r-rjson: Update to 0.2.19.

* gnu/packages/web.scm (r-rjson): Update to 0.2.19.

6 years agognu: r-htmltable: Update to 1.12.
Ricardo Wurmus [Thu, 31 May 2018 10:38:20 +0000 (12:38 +0200)]
gnu: r-htmltable: Update to 1.12.

* gnu/packages/web.scm (r-htmltable): Update to 1.12.

6 years agognu: r-directlabels: Update to 2018.05.22.
Ricardo Wurmus [Thu, 31 May 2018 10:38:06 +0000 (12:38 +0200)]
gnu: r-directlabels: Update to 2018.05.22.

* gnu/packages/statistics.scm (r-directlabels): Update to 2018.05.22.

6 years agognu: r-ranger: Update to 0.10.0.
Ricardo Wurmus [Thu, 31 May 2018 10:37:56 +0000 (12:37 +0200)]
gnu: r-ranger: Update to 0.10.0.

* gnu/packages/statistics.scm (r-ranger): Update to 0.10.0.

6 years agognu: r-tclust: Update to 1.4-1.
Ricardo Wurmus [Thu, 31 May 2018 10:37:47 +0000 (12:37 +0200)]
gnu: r-tclust: Update to 1.4-1.

* gnu/packages/statistics.scm (r-tclust): Update to 1.4-1.

6 years agognu: r-caret: Update to 6.0-80.
Ricardo Wurmus [Thu, 31 May 2018 10:37:36 +0000 (12:37 +0200)]
gnu: r-caret: Update to 6.0-80.

* gnu/packages/statistics.scm (r-caret): Update to 6.0-80.

6 years agognu: r-quantreg: Update to 5.36.
Ricardo Wurmus [Thu, 31 May 2018 10:37:26 +0000 (12:37 +0200)]
gnu: r-quantreg: Update to 5.36.

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

6 years agognu: r-rrcov: Update to 1.4-4.
Ricardo Wurmus [Thu, 31 May 2018 10:37:14 +0000 (12:37 +0200)]
gnu: r-rrcov: Update to 1.4-4.

* gnu/packages/statistics.scm (r-rrcov): Update to 1.4-4.

6 years agognu: r-ggthemes: Update to 3.5.0.
Ricardo Wurmus [Thu, 31 May 2018 10:37:03 +0000 (12:37 +0200)]
gnu: r-ggthemes: Update to 3.5.0.

* gnu/packages/statistics.scm (r-ggthemes): Update to 3.5.0.

6 years agognu: r-runit: Update to 0.4.32.
Ricardo Wurmus [Thu, 31 May 2018 10:36:52 +0000 (12:36 +0200)]
gnu: r-runit: Update to 0.4.32.

* gnu/packages/statistics.scm (r-runit): Update to 0.4.32.

6 years agognu: r-purrr: Update to 0.2.5.
Ricardo Wurmus [Thu, 31 May 2018 10:36:42 +0000 (12:36 +0200)]
gnu: r-purrr: Update to 0.2.5.

* gnu/packages/statistics.scm (r-purrr): Update to 0.2.5.

6 years agognu: r-tidyr: Update to 0.8.1.
Ricardo Wurmus [Thu, 31 May 2018 10:36:32 +0000 (12:36 +0200)]
gnu: r-tidyr: Update to 0.8.1.

* gnu/packages/statistics.scm (r-tidyr): Update to 0.8.1.

6 years agognu: r-synchronicity: Update to 1.3.4.
Ricardo Wurmus [Thu, 31 May 2018 10:36:22 +0000 (12:36 +0200)]
gnu: r-synchronicity: Update to 1.3.4.

* gnu/packages/statistics.scm (r-synchronicity): Update to 1.3.4.

6 years agognu: r-rngtools: Update to 1.3.1.
Ricardo Wurmus [Thu, 31 May 2018 10:36:13 +0000 (12:36 +0200)]
gnu: r-rngtools: Update to 1.3.1.

* gnu/packages/statistics.scm (r-rngtools): Update to 1.3.1.

6 years agognu: r-pkgmaker: Update to 0.27.
Ricardo Wurmus [Thu, 31 May 2018 10:35:42 +0000 (12:35 +0200)]
gnu: r-pkgmaker: Update to 0.27.

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

6 years agognu: r-lambda-r: Update to 1.2.3.
Ricardo Wurmus [Thu, 31 May 2018 10:35:30 +0000 (12:35 +0200)]
gnu: r-lambda-r: Update to 1.2.3.

* gnu/packages/statistics.scm (r-lambda-r): Update to 1.2.3.

6 years agognu: r-plotrix: Update to 3.7-2.
Ricardo Wurmus [Thu, 31 May 2018 10:35:16 +0000 (12:35 +0200)]
gnu: r-plotrix: Update to 3.7-2.

* gnu/packages/statistics.scm (r-plotrix): Update to 3.7-2.

6 years agognu: r-data-table: Update to 1.11.4.
Ricardo Wurmus [Thu, 31 May 2018 10:35:06 +0000 (12:35 +0200)]
gnu: r-data-table: Update to 1.11.4.

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

6 years agognu: r-rlang: Update to 0.2.1.
Ricardo Wurmus [Thu, 31 May 2018 10:34:56 +0000 (12:34 +0200)]
gnu: r-rlang: Update to 0.2.1.

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

6 years agognu: r-knitrbootstrap: Update to 1.0.2.
Ricardo Wurmus [Thu, 31 May 2018 10:34:39 +0000 (12:34 +0200)]
gnu: r-knitrbootstrap: Update to 1.0.2.

* gnu/packages/statistics.scm (r-knitrbootstrap): Update to 1.0.2.
[propagated-inputs]: Add r-markdown.

6 years agognu: r-pheatmap: Update to 1.0.10.
Ricardo Wurmus [Thu, 31 May 2018 10:34:29 +0000 (12:34 +0200)]
gnu: r-pheatmap: Update to 1.0.10.

* gnu/packages/statistics.scm (r-pheatmap): Update to 1.0.10.

6 years agognu: r-bit: Update to 1.1-14.
Ricardo Wurmus [Thu, 31 May 2018 10:34:21 +0000 (12:34 +0200)]
gnu: r-bit: Update to 1.1-14.

* gnu/packages/statistics.scm (r-bit): Update to 1.1-14.

6 years agognu: r-kernlab: Update to 0.9-26.
Ricardo Wurmus [Thu, 31 May 2018 10:34:06 +0000 (12:34 +0200)]
gnu: r-kernlab: Update to 0.9-26.

* gnu/packages/machine-learning.scm (r-kernlab): Update to 0.9-26.

6 years agognu: r-rmysql: Update to 0.10.15.
Ricardo Wurmus [Thu, 31 May 2018 10:33:46 +0000 (12:33 +0200)]
gnu: r-rmysql: Update to 0.10.15.

* gnu/packages/databases.scm (r-rmysql): Update to 0.10.15.

6 years agognu: r-mice: Update to 3.0.0.
Ricardo Wurmus [Thu, 31 May 2018 10:33:07 +0000 (12:33 +0200)]
gnu: r-mice: Update to 3.0.0.

* gnu/packages/cran.scm (r-mice): Update to 3.0.0.
[propagated-inputs]: Add r-broom, r-dplyr, r-mitml, and r-rlang.

6 years agognu: r-callr: Update to 2.0.4.
Ricardo Wurmus [Thu, 31 May 2018 10:32:25 +0000 (12:32 +0200)]
gnu: r-callr: Update to 2.0.4.

* gnu/packages/cran.scm (r-callr): Update to 2.0.4.
[propagated-inputs]: Add r-processx; remove r-assertthat, r-crayon, r-debugme,
and r-testthat.

6 years agognu: r-openxlsx: Update to 4.1.0.
Ricardo Wurmus [Thu, 31 May 2018 10:32:03 +0000 (12:32 +0200)]
gnu: r-openxlsx: Update to 4.1.0.

* gnu/packages/cran.scm (r-openxlsx): Update to 4.1.0.
[propagated-inputs]: Add r-zip.

6 years agognu: r-shinyace: Update to 0.3.1.
Ricardo Wurmus [Thu, 31 May 2018 10:31:42 +0000 (12:31 +0200)]
gnu: r-shinyace: Update to 0.3.1.

* gnu/packages/cran.scm (r-shinyace): Update to 0.3.1.
[propagated-inputs]: Add r-jsonlite.

6 years agognu: r-processx: Update to 3.1.0.
Ricardo Wurmus [Thu, 31 May 2018 10:31:13 +0000 (12:31 +0200)]
gnu: r-processx: Update to 3.1.0.

* gnu/packages/cran.scm (r-processx): Update to 3.1.0.
[propagated-inputs]: Remove r-debugme; add r-testthat.

6 years agognu: r-ggally: Update to 1.4.0.
Ricardo Wurmus [Thu, 31 May 2018 10:30:44 +0000 (12:30 +0200)]
gnu: r-ggally: Update to 1.4.0.

* gnu/packages/cran.scm (r-ggally): Update to 1.4.0.
[inputs]: Add libressl.
[propagated-inputs]: Add r-rlang.

6 years agognu: r-psych: Update to 1.8.4.
Ricardo Wurmus [Thu, 31 May 2018 10:30:17 +0000 (12:30 +0200)]
gnu: r-psych: Update to 1.8.4.

* gnu/packages/cran.scm (r-psych): Update to 1.8.4.

6 years agognu: r-pillar: Update to 1.2.3.
Ricardo Wurmus [Thu, 31 May 2018 10:30:06 +0000 (12:30 +0200)]
gnu: r-pillar: Update to 1.2.3.

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

6 years agognu: r-utf8: Update to 1.1.4.
Ricardo Wurmus [Thu, 31 May 2018 10:29:48 +0000 (12:29 +0200)]
gnu: r-utf8: Update to 1.1.4.

* gnu/packages/cran.scm (r-utf8): Update to 1.1.4.

6 years agognu: r-ggjoy: Update to 0.4.1.
Ricardo Wurmus [Thu, 31 May 2018 10:29:34 +0000 (12:29 +0200)]
gnu: r-ggjoy: Update to 0.4.1.

* gnu/packages/cran.scm (r-ggjoy): Update to 0.4.1.

6 years agognu: r-dtw: Update to 1.20-1.
Ricardo Wurmus [Thu, 31 May 2018 10:29:22 +0000 (12:29 +0200)]
gnu: r-dtw: Update to 1.20-1.

* gnu/packages/cran.scm (r-dtw): Update to 1.20-1.

6 years agognu: r-ica: Update to 1.0-2.
Ricardo Wurmus [Thu, 31 May 2018 10:29:09 +0000 (12:29 +0200)]
gnu: r-ica: Update to 1.0-2.

* gnu/packages/cran.scm (r-ica): Update to 1.0-2.

6 years agognu: r-sm: Update to 2.2-5.5.
Ricardo Wurmus [Thu, 31 May 2018 10:28:57 +0000 (12:28 +0200)]
gnu: r-sm: Update to 2.2-5.5.

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

6 years agognu: r-hardyweinberg: Update to 1.6.1.
Ricardo Wurmus [Thu, 31 May 2018 10:28:46 +0000 (12:28 +0200)]
gnu: r-hardyweinberg: Update to 1.6.1.

* gnu/packages/cran.scm (r-hardyweinberg): Update to 1.6.1.

6 years agognu: r-ggrepel: Update to 0.8.0.
Ricardo Wurmus [Thu, 31 May 2018 10:28:32 +0000 (12:28 +0200)]
gnu: r-ggrepel: Update to 0.8.0.

* gnu/packages/cran.scm (r-ggrepel): Update to 0.8.0.

6 years agognu: r-cvst: Update to 0.2-2.
Ricardo Wurmus [Thu, 31 May 2018 10:28:19 +0000 (12:28 +0200)]
gnu: r-cvst: Update to 0.2-2.

* gnu/packages/cran.scm (r-cvst): Update to 0.2-2.

6 years agognu: r-energy: Update to 1.7-4.
Ricardo Wurmus [Thu, 31 May 2018 10:28:07 +0000 (12:28 +0200)]
gnu: r-energy: Update to 1.7-4.

* gnu/packages/cran.scm (r-energy): Update to 1.7-4.

6 years agognu: r-emdbook: Update to 1.3.10.
Ricardo Wurmus [Thu, 31 May 2018 10:27:50 +0000 (12:27 +0200)]
gnu: r-emdbook: Update to 1.3.10.

* gnu/packages/cran.scm (r-emdbook): Update to 1.3.10.

6 years agognu: r-inline: Update to 0.3.15.
Ricardo Wurmus [Thu, 31 May 2018 10:27:38 +0000 (12:27 +0200)]
gnu: r-inline: Update to 0.3.15.

* gnu/packages/cran.scm (r-inline): Update to 0.3.15.

6 years agognu: r-ff: Update to 2.2-14.
Ricardo Wurmus [Thu, 31 May 2018 10:27:21 +0000 (12:27 +0200)]
gnu: r-ff: Update to 2.2-14.

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

6 years agognu: r-rcpp: Update to 0.12.17.
Ricardo Wurmus [Thu, 31 May 2018 10:27:09 +0000 (12:27 +0200)]
gnu: r-rcpp: Update to 0.12.17.

* gnu/packages/cran.scm (r-rcpp): Update to 0.12.17.

6 years agognu: r-abbyyr: Update to 0.5.4.
Ricardo Wurmus [Thu, 31 May 2018 10:26:55 +0000 (12:26 +0200)]
gnu: r-abbyyr: Update to 0.5.4.

* gnu/packages/cran.scm (r-abbyyr): Update to 0.5.4.

6 years agognu: Add r-bibtex.
Ricardo Wurmus [Thu, 31 May 2018 10:26:25 +0000 (12:26 +0200)]
gnu: Add r-bibtex.

* gnu/packages/cran.scm (r-bibtex): New variable.

6 years agognu: Add r-reticulate.
Ricardo Wurmus [Thu, 31 May 2018 10:26:09 +0000 (12:26 +0200)]
gnu: Add r-reticulate.

* gnu/packages/cran.scm (r-reticulate): New variable.

6 years agognu: Add r-zip.
Ricardo Wurmus [Thu, 31 May 2018 10:25:53 +0000 (12:25 +0200)]
gnu: Add r-zip.

* gnu/packages/cran.scm (r-zip): New variable.

6 years agognu: Add r-mitml.
Ricardo Wurmus [Thu, 31 May 2018 10:25:34 +0000 (12:25 +0200)]
gnu: Add r-mitml.

* gnu/packages/cran.scm (r-mitml): New variable.

6 years agognu: Add r-pan.
Ricardo Wurmus [Thu, 31 May 2018 10:25:22 +0000 (12:25 +0200)]
gnu: Add r-pan.

* gnu/packages/cran.scm (r-pan): New variable.

6 years agognu: Add r-jomo.
Ricardo Wurmus [Thu, 31 May 2018 10:25:07 +0000 (12:25 +0200)]
gnu: Add r-jomo.

* gnu/packages/cran.scm (r-jomo): New variable.

6 years agognu: r-vegan: Update to 2.5-2.
Ricardo Wurmus [Thu, 31 May 2018 07:19:08 +0000 (09:19 +0200)]
gnu: r-vegan: Update to 2.5-2.

* gnu/packages/bioinformatics.scm (r-vegan): Update to 2.5-2.

6 years agognu: linux-libre@4.14: Update to 4.14.47.
Mark H Weaver [Thu, 31 May 2018 08:17:22 +0000 (04:17 -0400)]
gnu: linux-libre@4.14: Update to 4.14.47.

* gnu/packages/linux.scm (%linux-libre-4.14-version): Update to 4.14.47.
(%linux-libre-4.14-hash): Update hash.
(linux-libre-arm-generic-4.14, linux-libre-arm-omap2plus-4.14)
(linux-libre-4.14): Remove patch.

6 years agognu: linux-libre@4.9: Update to 4.9.105.
Mark H Weaver [Thu, 31 May 2018 08:16:05 +0000 (04:16 -0400)]
gnu: linux-libre@4.9: Update to 4.9.105.

* gnu/packages/linux.scm (linux-libre-4.9): Update to 4.9.105.
Remove patch.

6 years agognu: linux-libre@4.4: Update to 4.4.135.
Mark H Weaver [Thu, 31 May 2018 08:14:57 +0000 (04:14 -0400)]
gnu: linux-libre@4.4: Update to 4.4.135.

* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.135.
Remove patch.

6 years agognu: mariadb: Update to 10.1.33.
Efraim Flashner [Wed, 30 May 2018 19:46:12 +0000 (22:46 +0300)]
gnu: mariadb: Update to 10.1.33.

* gnu/packages/databases.scm (mariadb): Update to 10.1.33.

6 years agognu: linux-libre: Revert bad upstream patch in 4.14/4.9/4.4 kernels.
Mark H Weaver [Thu, 31 May 2018 04:17:55 +0000 (00:17 -0400)]
gnu: linux-libre: Revert bad upstream patch in 4.14/4.9/4.4 kernels.

Apply the 1-line revert from upstream that was the sole fix in 4.14.47,
4.9.105, and 4.4.135.  Here we cherry-pick the patch until the corresponding
linux-libre versions are released.

* gnu/packages/linux.scm (linux-libre-4.14, linux-libre-4.9)
(linux-libre-arm-generic-4.14, linux-libre-arm-omap2plus-4.14)
(linux-libre-4.4): Add the patch.

6 years agognu: 0ad: Update to 0.0.23-alpha.
Jonathan Brielmaier [Sun, 27 May 2018 20:49:50 +0000 (22:49 +0200)]
gnu: 0ad: Update to 0.0.23-alpha.

* gnu/packages/games.scm (0ad-data, 0ad): Update to 0.0.23-alpha.
[source]: Use HTTPS URL.
[inputs]: Add libsodium.

Signed-off-by: Leo Famulari <leo@famulari.name>
6 years agognu: knot: Update to 2.6.7.
Tobias Geerinckx-Rice [Thu, 31 May 2018 02:18:45 +0000 (04:18 +0200)]
gnu: knot: Update to 2.6.7.

* gnu/packages/dns.scm (knot): Update to 2.6.7.

6 years agognu: duperemove: Update to 0.11.
Tobias Geerinckx-Rice [Thu, 31 May 2018 02:18:01 +0000 (04:18 +0200)]
gnu: duperemove: Update to 0.11.

* gnu/packages/disk.scm (duperemove): Update to 0.11.