jackhill/guix/guix.git
5 years agognu: Add r-txdb-hsapiens-ucsc-hg38-knowngene.
Ricardo Wurmus [Wed, 12 Jun 2019 14:22:30 +0000 (16:22 +0200)]
gnu: Add r-txdb-hsapiens-ucsc-hg38-knowngene.

* gnu/packages/bioconductor.scm (r-txdb-hsapiens-ucsc-hg38-knowngene): New variable.

5 years agognu: ungoogled-chromium: Update to 75.0.3770.80-0.5d8abc3.
Marius Bakke [Wed, 12 Jun 2019 10:00:26 +0000 (12:00 +0200)]
gnu: ungoogled-chromium: Update to 75.0.3770.80-0.5d8abc3.

* gnu/packages/chromium.scm (%preserved-third-party-files): Update for 75.
(%chromium-version): Update to 75.0.3770.80.
(%ungoogled-revision): Update to 5d8abc38b43a62f379615a0dc972b29d9aebb4b4.
(%debian-revision): Update to debian/75.0.3770.80-1.
(%chromium-origin, %ungoogled-origin, %debian-origin): Update hashes.
(ungoogled-chromium-source): Include Debians GCC6 patches.
(ungoogled-chromium)[arguments]: Add "enable_vr=false" to #:configure-flags.

5 years agognu: chromium: Move origins into separate variables.
Marius Bakke [Tue, 11 Jun 2019 08:09:24 +0000 (10:09 +0200)]
gnu: chromium: Move origins into separate variables.

* gnu/packages/chromium.scm (%chromium-origin, %ungoogled-origin,
%debian-origin): New variables.
(ungoogled-chromium-source): Adjust accordingly.

5 years agognu: pigx-rnaseq: Update to 0.0.6.
Ricardo Wurmus [Wed, 12 Jun 2019 11:10:11 +0000 (13:10 +0200)]
gnu: pigx-rnaseq: Update to 0.0.6.

* gnu/packages/bioinformatics.scm (pigx-rnaseq): Update to 0.0.6.
[inputs]: Remove bedtools.

5 years agognu: wget.scm: List inputs alphabetically.
Efraim Flashner [Wed, 12 Jun 2019 09:58:15 +0000 (12:58 +0300)]
gnu: wget.scm: List inputs alphabetically.

* gnu/packages/wget.scm: List inputs alphabetically.

5 years agognu: wget: Change default paste site.
Efraim Flashner [Wed, 12 Jun 2019 09:56:09 +0000 (12:56 +0300)]
gnu: wget: Change default paste site.

* gnu/packages/wget.scm (wgetpaste)[arguments]: Change default paste
site in custom 'remove-dead-paste-site phase.

5 years agognu: wgetpaste: Add xclip to wrapper program list.
Efraim Flashner [Wed, 12 Jun 2019 09:53:31 +0000 (12:53 +0300)]
gnu: wgetpaste: Add xclip to wrapper program list.

* gnu/packages/wget.scm (wgetpaste)[arguments]: Add xclip to list of
wrapper programs in custom 'wrap-program phase.
[inputs]: Add xclip.

5 years agognu: Add r-annotatr.
Ricardo Wurmus [Wed, 12 Jun 2019 09:02:14 +0000 (11:02 +0200)]
gnu: Add r-annotatr.

* gnu/packages/bioconductor.scm (r-annotatr): New variable.

5 years agognu: crate: Add proc-macro2 and quote.
Ivan Petkov [Tue, 16 Apr 2019 10:42:27 +0000 (03:42 -0700)]
gnu: crate: Add proc-macro2 and quote.

* gnu/packages/crates-io.scm: (rust-proc-macro2): New variable.
(rust-quote): New variable.

Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
5 years agognu: crate: Add unicode-xid.
Ivan Petkov [Tue, 16 Apr 2019 10:40:14 +0000 (03:40 -0700)]
gnu: crate: Add unicode-xid.

* gnu/local.mk: (GNU_SYSTEM_MODULES): Add packages/crates-io.scm.
* gnu/packages/crates-io.scm: New file, containing unicode-xid.

Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
5 years agoimport: crate: Define dependencies as arguments.
Ivan Petkov [Fri, 17 May 2019 07:26:07 +0000 (00:26 -0700)]
import: crate: Define dependencies as arguments.

* guix/import/crate.scm:
(crate-fetch)[input-crates]: Rename to dev-crates.
[native-input-crates]: Rename to dev-dep-crates.
[inputs]: Rename to cargo-inputs.
[native-inputs]: Rename to cargo-development-inputs.
(maybe-cargo-inputs, maybe-cargo-development-inputs, maybe-arguments): Add
them.
(make-crate-sexp)[inputs]: Rename to cargo-inputs.
[native-inputs]: Rename to cargo-development-inputs.
[maybe-native-inputs, maybe-inputs]: Replace with maybe-arguments.
* guix/import/utils.scm: (package-names->package-inputs): Make public.  Add
docstring.
* tests/crate.scm (crate->guix-package): Update the match pattern.

Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
5 years agodoc: Update cargo-build-system parameter docs.
Ivan Petkov [Fri, 17 May 2019 16:07:54 +0000 (09:07 -0700)]
doc: Update cargo-build-system parameter docs.

* doc/guix.texi: (Build Systems)[cargo-build-system]: Add references to
the #:rust, #:cargo-inputs, and #:cargo-development-inputs parameters.
Remove reference to installing crate sources.

Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
5 years agobuild-system/cargo: Don't copy source as an output.
Ivan Petkov [Fri, 17 May 2019 06:05:50 +0000 (23:05 -0700)]
build-system/cargo: Don't copy source as an output.

* guix/build-system/cargo.scm: (cargo-build)[build-expression->derivation]:
Don't add "src" output.
* guix/build/cargo-build-system.scm: (install-source): Delete it.
(%standard-phases): Delete 'install-source.

Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
5 years agobuild-system/cargo: Use sources from package sources.
Ivan Petkov [Fri, 17 May 2019 06:02:12 +0000 (23:02 -0700)]
build-system/cargo: Use sources from package sources.

* guix/build/cargo-build-system.scm (crate-src?): New procedure.
(configure): Use the new procedure to expand crate tarballs in the vendor
directory.

Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
5 years agobuild-system/cargo: Expand transitive crate sources.
Ivan Petkov [Tue, 16 Apr 2019 10:37:44 +0000 (03:37 -0700)]
build-system/cargo: Expand transitive crate sources.

* guix/build/cargo: (package-cargo-inputs): Add it.
(package-cargo-development-inputs): Add it.
(crate-closure): Add it.
(expand-crate-sources): Add it.
(lower)[private-keywords]: Add #:cargo-inputs and
[bag]: Use expand-crate-sources to augment build-inputs.

Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
5 years agognu: Add emacs-shroud.
Amar Singh [Sun, 21 Apr 2019 19:58:32 +0000 (01:28 +0530)]
gnu: Add emacs-shroud.

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

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
5 years agoservices: Add SRFI-26 to Nix activation gexp.
Tobias Geerinckx-Rice [Tue, 11 Jun 2019 18:50:37 +0000 (20:50 +0200)]
services: Add SRFI-26 to Nix activation gexp.

Fix the following fatal error on ‘guix system reconfigure’:

Backtrace:
          18 (primitive-load "/home/nckx/.config/guix/current/bin/guix")
In guix/ui.scm:
  1620:12 17 (run-guix-command _ . _)
In ice-9/boot-9.scm:
    829:9 16 (catch _ _ #<procedure 7a7caa2d4c80 at guix/ui.scm:587:2 (key c)> _)
    829:9 15 (catch _ _ #<procedure 7a7caa2d4c98 at guix/ui.scm:710:6 (key proc format-string format-args . …> …)
In guix/scripts/system.scm:
   1325:8 14 (_)
In guix/status.scm:
    768:4 13 (call-with-status-report _ _)
In guix/scripts/system.scm:
   1181:4 12 (process-action _ _ _)
In guix/store.scm:
   623:10 11 (call-with-store _)
  1800:24 10 (run-with-store _ _ #:guile-for-build _ #:system _ #:target _)
In guix/scripts/system.scm:
   920:13  9 (_ _)
    409:8  8 (_ _)
In unknown file:
           7 (primitive-load "/gnu/store/dha7j9gcz3vgb8cy7vfvvaswwsywrrzj-activate")
In ice-9/boot-9.scm:
   260:13  6 (for-each #<procedure primitive-load (_)> _)
In unknown file:
           5 (primitive-load "/gnu/store/ql1xjxrssxm51z2bn2v6l3mlrncij84h-activate-service")
In ice-9/eval.scm:
    619:8  4 (_ #f)
   196:35  3 (_ #f)
   196:27  2 (_ #f)
   223:20  1 (proc #<directory (guile-user) 1fa4140>)
In unknown file:
           0 (%resolve-variable (7 . cut) #<directory (guile-user) 1fa4140>)

ERROR: In procedure %resolve-variable:
error: cut: unbound variable

Reported-by: Alex McGrath on #guix.
* gnu/services/nix.scm (nix-activation): Import and use (srfi srfi-26).

5 years agognu: racket: Update to 7.3.
Christopher Lemmer Webber [Sun, 9 Jun 2019 02:37:50 +0000 (22:37 -0400)]
gnu: racket: Update to 7.3.

* gnu/packages/scheme.scm (racket): Update to 7.3.
* gnu/packages/patches/racket-store-checksum-override.patch: Update for Racket
  7.3.

5 years agognu: Add r-psiplot.
Ricardo Wurmus [Tue, 11 Jun 2019 11:39:38 +0000 (13:39 +0200)]
gnu: Add r-psiplot.

* gnu/packages/bioinformatics.scm (r-psiplot): New variable.

5 years agognu: tbb: Update to 2019_U8.
Marius Bakke [Mon, 10 Jun 2019 13:32:34 +0000 (15:32 +0200)]
gnu: tbb: Update to 2019_U8.

* gnu/packages/tbb.scm (tbb): Update to 2019_U8.

5 years agognu: offlineimap: Update to 7.2.4.
Marius Bakke [Mon, 10 Jun 2019 13:20:24 +0000 (15:20 +0200)]
gnu: offlineimap: Update to 7.2.4.

* gnu/packages/mail.scm (offlineimap): Update to 7.2.4.

5 years agognu: wine-staging: Update to 4.10.
Rutger Helling [Tue, 11 Jun 2019 06:24:49 +0000 (08:24 +0200)]
gnu: wine-staging: Update to 4.10.

* gnu/packages/wine.scm (wine-staging-patchset-data): Update to 4.10.
* gnu/packages/wine.scm (wine-staging): Update to 4.10.

5 years agognu: faudio: Update to 19.06.07.
Rutger Helling [Tue, 11 Jun 2019 06:21:05 +0000 (08:21 +0200)]
gnu: faudio: Update to 19.06.07.

* gnu/packages/audio.scm (faudio): Update to 19.06.07.

5 years agognu: kitty: Update to 0.14.2.
Rutger Helling [Tue, 11 Jun 2019 06:20:49 +0000 (08:20 +0200)]
gnu: kitty: Update to 0.14.2.

* gnu/packages/terminals.scm (kitty): Update to 0.14.2.

5 years agognu: grim: Update to 1.2.0.
Tobias Geerinckx-Rice [Mon, 10 Jun 2019 21:52:47 +0000 (23:52 +0200)]
gnu: grim: Update to 1.2.0.

* gnu/packages/image.scm (grim): Update to 1.2.0.

5 years agognu: slurp: Update to 1.2.0.
Tobias Geerinckx-Rice [Mon, 10 Jun 2019 21:49:11 +0000 (23:49 +0200)]
gnu: slurp: Update to 1.2.0.

* gnu/packages/image.scm (slurp): Update to 1.2.0.

5 years agopack: Fix 'guix pack -f docker'.
Ludovic Courtès [Mon, 10 Jun 2019 21:16:47 +0000 (23:16 +0200)]
pack: Fix 'guix pack -f docker'.

Regression introduced in a0f352b30f4869a7af7017b8a5011ac7602dd115.

* guix/scripts/pack.scm (docker-image): Check whether ENTRY-POINT is
true before returning (string-append #$profile ...).

5 years agoservices: slim: Update SLiM theme to 1.x.
Diego Nicola Barbato [Sat, 8 Jun 2019 07:54:20 +0000 (09:54 +0200)]
services: slim: Update SLiM theme to 1.x.

* gnu/services/xorg.scm (%default-slim-theme-name): Change to "1.x".

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
5 years agoartwork: Update snapshot to 2f2fe74.
Diego Nicola Barbato [Fri, 7 Jun 2019 21:58:05 +0000 (23:58 +0200)]
artwork: Update snapshot to 2f2fe74.

* gnu/artwork.scm (%artwork-repository): Update to 2f2fe74.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
5 years agostore: 'build-things' accepts derivation/output pairs.
Ludovic Courtès [Mon, 10 Jun 2019 20:10:21 +0000 (22:10 +0200)]
store: 'build-things' accepts derivation/output pairs.

This allows callers to request the substitution of a single derivation
output.

* guix/store.scm (build-things): Accept derivation/output pairs among
THINGS.
* guix/derivations.scm (build-derivations): Likewise.
* tests/store.scm ("substitute + build-things with specific output"):
New test.
* tests/derivations.scm ("build-derivations with specific output"):
New test.
* doc/guix.texi (The Store): Adjust accordingly.

5 years agossh: Add missing import.
Ludovic Courtès [Mon, 10 Jun 2019 20:12:28 +0000 (22:12 +0200)]
ssh: Add missing import.

* guix/ssh.scm: Use (ice-9 format).

5 years agodownload: Update list of content-addressed mirrors.
Ludovic Courtès [Sun, 9 Jun 2019 20:13:19 +0000 (22:13 +0200)]
download: Update list of content-addressed mirrors.

* guix/download.scm (%content-addressed-mirrors): Change
"berlin.guixsd.org" to "ci.guix.gnu.org" and move it first.

5 years agodoc: Work around a po4a bug.
Julien Lepiller [Mon, 10 Jun 2019 16:26:49 +0000 (18:26 +0200)]
doc: Work around a po4a bug.

* doc/guix.texi: Work around a po4a bug that prevents `guix pull` from
completing.

5 years agoRevert "nls: Update 'de' translation of the manual."
Ricardo Wurmus [Mon, 10 Jun 2019 12:33:53 +0000 (14:33 +0200)]
Revert "nls: Update 'de' translation of the manual."

This reverts commit 78b0f9419fdac88d7b84314868bab1b1e8173602.

5 years agognu-maintenance: Switch to ftp.mirrorservice.org for KDE updater.
Marius Bakke [Mon, 10 Jun 2019 11:58:24 +0000 (13:58 +0200)]
gnu-maintenance: Switch to ftp.mirrorservice.org for KDE updater.

mirrors.mit.edu seems no longer available over FTP.

* guix/gnu-maintenance.scm (latest-kde-release): Change from mirrors.mit.edu
to ftp.mirrorservice.org.

5 years agognu: Add r-biosigner.
Ricardo Wurmus [Mon, 10 Jun 2019 08:58:39 +0000 (10:58 +0200)]
gnu: Add r-biosigner.

* gnu/packages/bioconductor.scm (r-biosigner): New variable.

5 years agognu: Add r-ropls.
Ricardo Wurmus [Mon, 10 Jun 2019 08:58:30 +0000 (10:58 +0200)]
gnu: Add r-ropls.

* gnu/packages/bioconductor.scm (r-ropls): New variable.

5 years agoservices: guix-publish: Configure log rotation.
Christopher Baines [Fri, 31 May 2019 17:25:48 +0000 (18:25 +0100)]
services: guix-publish: Configure log rotation.

* gnu/services/base.scm (%guix-publish-log-rotations): New variable.
(guix-publish-service-type): Extend the rottlog-service-type.

5 years agoservices: guix-publish: Log to a file.
Christopher Baines [Sat, 18 May 2019 20:58:40 +0000 (21:58 +0100)]
services: guix-publish: Log to a file.

This makes it easier to read the output, as it's recorded in a file.

* gnu/services/base.scm (guix-publish-shepherd-service): Add #:log-file to
make-forkexec-constructor.

5 years agoservices: Add 'nix-service-type'.
Oleg Pykhalov [Thu, 9 May 2019 12:13:26 +0000 (15:13 +0300)]
services: Add 'nix-service-type'.

* gnu/services/nix.scm: New file.
* gnu/local.mk: Add this.
* doc/guix.texi (Miscellaneous Services): Document this.

5 years agognu: linux-libre: Update to 5.1.8.
Mark H Weaver [Mon, 10 Jun 2019 05:52:15 +0000 (01:52 -0400)]
gnu: linux-libre: Update to 5.1.8.

* gnu/packages/linux.scm (%linux-libre-version): Update to 5.1.8.
(%linux-libre-hash): Update hash.

5 years agognu: linux-libre@4.19: Update to 4.19.49.
Mark H Weaver [Mon, 10 Jun 2019 05:51:08 +0000 (01:51 -0400)]
gnu: linux-libre@4.19: Update to 4.19.49.

* gnu/packages/linux.scm (%linux-libre-4.19-version): Update to 4.19.49.
(%linux-libre-4.19-hash): Update hash.

5 years agognu: linux-libre@4.15: Remove package.
Mark H Weaver [Mon, 10 Jun 2019 05:48:01 +0000 (01:48 -0400)]
gnu: linux-libre@4.15: Remove package.

This release series is no longer supported upstream.

* gnu/packages/linux.scm (%linux-libre-4.15-version)
(%linux-libre-4.15-hash, linux-libre-4.15)
(linux-libre-headers-4.15): Remove variables.

5 years agognu: linux-libre@4.14: Update to 4.14.124.
Mark H Weaver [Mon, 10 Jun 2019 05:45:26 +0000 (01:45 -0400)]
gnu: linux-libre@4.14: Update to 4.14.124.

* gnu/packages/linux.scm (%linux-libre-4.14-version): Update to 4.14.124.
(%linux-libre-4.14-hash): Update hash.

5 years agognu: emacs-idris-mode: Use recent git checkout.
Eric Bavier [Fri, 31 May 2019 03:11:52 +0000 (22:11 -0500)]
gnu: emacs-idris-mode: Use recent git checkout.

* gnu/packages/emacs-xyz.scm (emacs-idris-mode)[source]: Use git-fetch.
[version]: Include revision and commit.

5 years agognu: recutils: Remove emacs-minimal native input.
Jack Hill [Mon, 10 Jun 2019 03:25:20 +0000 (23:25 -0400)]
gnu: recutils: Remove emacs-minimal native input.

* gnu/packages/databases.scm (recutils)[native-inputs]: Remove emacs-minimal.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
5 years agognu: Add emacs-recutils.
Jack Hill [Mon, 10 Jun 2019 02:02:15 +0000 (22:02 -0400)]
gnu: Add emacs-recutils.

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

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
5 years agognu: Restore allegro-mesa-18.2.5-and-later.patch.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 23:25:17 +0000 (01:25 +0200)]
gnu: Restore allegro-mesa-18.2.5-and-later.patch.

Dropped in 49405aaf5c2c9cfc713c7efdccaf6d48d3c714a3, it's still in use
by the (leaf) allegro-5.0 package.

* gnu/packages/patches/allegro-mesa-18.2.5-and-later.patch: Newish file.
* gnu/local.mk (dist_patch_DATA): Re-add it.

5 years agognu: mobile-broadband-provider-info: Update to 20190116.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 22:25:20 +0000 (00:25 +0200)]
gnu: mobile-broadband-provider-info: Update to 20190116.

* gnu/packages/gnome.scm (mobile-broadband-provider-info): Update to 20190116.

5 years agognu: gnumeric: Update to 1.12.45.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 14:16:47 +0000 (16:16 +0200)]
gnu: gnumeric: Update to 1.12.45.

* gnu/packages/gnome.scm (gnumeric): Update to 1.12.45.

5 years agognu: virtualgl: Update to 2.6.2.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 14:06:53 +0000 (16:06 +0200)]
gnu: virtualgl: Update to 2.6.2.

* gnu/packages/gl.scm (virtualgl): Update to 2.6.2.

5 years agognu: cfitsio: Update to 3.47.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 13:59:45 +0000 (15:59 +0200)]
gnu: cfitsio: Update to 3.47.

* gnu/packages/astronomy.scm (cfitsio): Update to 3.47.

5 years agognu: radeontop: Don't use unstable tarball.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 01:46:49 +0000 (03:46 +0200)]
gnu: radeontop: Don't use unstable tarball.

* gnu/packages/linux.scm (radeontop)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
[home-page]: Move down to its conventional spot.

5 years agognu: radeontop: Update to 1.2.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 01:43:25 +0000 (03:43 +0200)]
gnu: radeontop: Update to 1.2.

* gnu/packages/linux.scm (radeontop): Update to 1.2.

5 years agodoc: Fix typos.
Tobias Geerinckx-Rice [Sun, 9 Jun 2019 01:29:59 +0000 (03:29 +0200)]
doc: Fix typos.

* doc/guix.texi (Version Control Services): Fix typos & edit surrounding
text.

5 years agognu: r-rhisat2: Update to 1.0.2.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:44 +0000 (15:19 +0200)]
gnu: r-rhisat2: Update to 1.0.2.

* gnu/packages/bioconductor.scm (r-rhisat2): Update to 1.0.2.

5 years agognu: r-aucell: Update to 1.6.1.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:40 +0000 (15:19 +0200)]
gnu: r-aucell: Update to 1.6.1.

* gnu/packages/bioconductor.scm (r-aucell): Update to 1.6.1.

5 years agognu: r-msnbase: Update to 2.10.1.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:36 +0000 (15:19 +0200)]
gnu: r-msnbase: Update to 2.10.1.

* gnu/packages/bioinformatics.scm (r-msnbase): Update to 2.10.1.

5 years agognu: r-iranges: Update to 2.18.1.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:33 +0000 (15:19 +0200)]
gnu: r-iranges: Update to 2.18.1.

* gnu/packages/bioinformatics.scm (r-iranges): Update to 2.18.1.

5 years agognu: r-numderiv: Update to 2016.8-1.1.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:28 +0000 (15:19 +0200)]
gnu: r-numderiv: Update to 2016.8-1.1.

* gnu/packages/statistics.scm (r-numderiv): Update to 2016.8-1.1.

5 years agognu: r-quantreg: Update to 5.40.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:24 +0000 (15:19 +0200)]
gnu: r-quantreg: Update to 5.40.

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

5 years agognu: r-fpc: Update to 2.2-2.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:19 +0000 (15:19 +0200)]
gnu: r-fpc: Update to 2.2-2.

* gnu/packages/statistics.scm (r-fpc): Update to 2.2-2.

5 years agognu: r-prabclus: Update to 2.3-1.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:13 +0000 (15:19 +0200)]
gnu: r-prabclus: Update to 2.3-1.

* gnu/packages/statistics.scm (r-prabclus): Update to 2.3-1.

5 years agognu: r-e1071: Update to 1.7-2.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:09 +0000 (15:19 +0200)]
gnu: r-e1071: Update to 1.7-2.

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

5 years agognu: r-xml: Update to 3.98-1.20.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:04 +0000 (15:19 +0200)]
gnu: r-xml: Update to 3.98-1.20.

* gnu/packages/statistics.scm (r-xml): Update to 3.98-1.20.

5 years agognu: r-dbplyr: Update to 1.4.1.
Ricardo Wurmus [Sun, 9 Jun 2019 13:19:00 +0000 (15:19 +0200)]
gnu: r-dbplyr: Update to 1.4.1.

* gnu/packages/statistics.scm (r-dbplyr): Update to 1.4.1.

5 years agognu: r-tibble: Update to 2.1.3.
Ricardo Wurmus [Sun, 9 Jun 2019 13:18:56 +0000 (15:18 +0200)]
gnu: r-tibble: Update to 2.1.3.

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

5 years agognu: r-markdown: Update to 1.0.
Ricardo Wurmus [Sun, 9 Jun 2019 13:18:53 +0000 (15:18 +0200)]
gnu: r-markdown: Update to 1.0.

* gnu/packages/statistics.scm (r-markdown): Update to 1.0.

5 years agognu: r-rsvd: Update to 1.0.1.
Ricardo Wurmus [Sun, 9 Jun 2019 13:18:48 +0000 (15:18 +0200)]
gnu: r-rsvd: Update to 1.0.1.

* gnu/packages/cran.scm (r-rsvd): Update to 1.0.1.

5 years agognu: r-iso: Update to 0.0-18.
Ricardo Wurmus [Sun, 9 Jun 2019 13:18:44 +0000 (15:18 +0200)]
gnu: r-iso: Update to 0.0-18.

* gnu/packages/cran.scm (r-iso): Update to 0.0-18.

5 years agognu: r-performance: Update to 0.2.0.
Ricardo Wurmus [Sun, 9 Jun 2019 13:18:40 +0000 (15:18 +0200)]
gnu: r-performance: Update to 0.2.0.

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

5 years agognu: r-sjstats: Update to 0.17.5.
Ricardo Wurmus [Sun, 9 Jun 2019 13:18:16 +0000 (15:18 +0200)]
gnu: r-sjstats: Update to 0.17.5.

* gnu/packages/cran.scm (r-sjstats): Update to 0.17.5.
[propagated-inputs]: Add r-bayestestr and r-performance; remove r-matrix.

5 years agognu: r-proc: Update to 1.15.0.
Ricardo Wurmus [Sun, 9 Jun 2019 13:18:11 +0000 (15:18 +0200)]
gnu: r-proc: Update to 1.15.0.

* gnu/packages/cran.scm (r-proc): Update to 1.15.0.

5 years agognu: r-sjlabelled: Update to 1.1.0.
Ricardo Wurmus [Sun, 9 Jun 2019 13:17:52 +0000 (15:17 +0200)]
gnu: r-sjlabelled: Update to 1.1.0.

* gnu/packages/cran.scm (r-sjlabelled): Update to 1.1.0.
[propagated-inputs]: Remove r-dplyr; add r-tidyselect.

5 years agognu: r-tseries: Update to 0.10-47.
Ricardo Wurmus [Sun, 9 Jun 2019 13:17:46 +0000 (15:17 +0200)]
gnu: r-tseries: Update to 0.10-47.

* gnu/packages/cran.scm (r-tseries): Update to 0.10-47.

5 years agognu: r-statnet-common: Update to 4.3.0.
Ricardo Wurmus [Sun, 9 Jun 2019 13:17:41 +0000 (15:17 +0200)]
gnu: r-statnet-common: Update to 4.3.0.

* gnu/packages/cran.scm (r-statnet-common): Update to 4.3.0.

5 years agognu: r-seriation: Update to 1.2-7.
Ricardo Wurmus [Sun, 9 Jun 2019 13:17:37 +0000 (15:17 +0200)]
gnu: r-seriation: Update to 1.2-7.

* gnu/packages/cran.scm (r-seriation): Update to 1.2-7.

5 years agognu: r-stringdist: Update to 0.9.5.2.
Ricardo Wurmus [Sun, 9 Jun 2019 13:17:26 +0000 (15:17 +0200)]
gnu: r-stringdist: Update to 0.9.5.2.

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

5 years agognu: git: Update to 2.22.0.
Tobias Geerinckx-Rice [Sat, 8 Jun 2019 22:00:35 +0000 (00:00 +0200)]
gnu: git: Update to 2.22.0.

* gnu/packages/version-control.scm (git): Update to 2.22.0.

5 years agognu: notmuch: Update to 0.29.
Marius Bakke [Fri, 7 Jun 2019 11:25:58 +0000 (13:25 +0200)]
gnu: notmuch: Update to 0.29.

* gnu/packages/mail.scm (notmuch): Update to 0.29.
[source]: Change to ".xz" tarball.

5 years agognu: po4a: Update to 0.56.
Marius Bakke [Fri, 7 Jun 2019 11:24:26 +0000 (13:24 +0200)]
gnu: po4a: Update to 0.56.

* gnu/packages/gettext.scm (po4a): Update to 0.56.

5 years agognu: ceph: Update to 13.2.6.
Marius Bakke [Wed, 5 Jun 2019 19:44:47 +0000 (21:44 +0200)]
gnu: ceph: Update to 13.2.6.

* gnu/packages/storage.scm (ceph): Update to 13.2.6.

5 years agognu: jalv-select: Update to 1.3.
Ricardo Wurmus [Sat, 8 Jun 2019 19:38:26 +0000 (21:38 +0200)]
gnu: jalv-select: Update to 1.3.

* gnu/packages/music.scm (jalv-select): Update to 1.3.
[arguments]: Do not patch jalv.select.h.

5 years agognu: gtkwave: Update to 3.3.101.
Tobias Geerinckx-Rice [Sat, 8 Jun 2019 05:21:01 +0000 (07:21 +0200)]
gnu: gtkwave: Update to 3.3.101.

* gnu/packages/fpga.scm (gtkwave): Update to 3.3.101.

5 years agognu: newt: Update to 0.52.21.
Tobias Geerinckx-Rice [Sat, 8 Jun 2019 00:29:56 +0000 (02:29 +0200)]
gnu: newt: Update to 0.52.21.

* gnu/packages/slang.scm (newt): Update to 0.52.21.

5 years agognu: v4l-utils: Update to 1.16.6.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 23:33:42 +0000 (01:33 +0200)]
gnu: v4l-utils: Update to 1.16.6.

* gnu/packages/video.scm (v4l-utils): Update to 1.16.6.

5 years agognu: livemedia-utils: Update to 2019.05.29.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 23:33:28 +0000 (01:33 +0200)]
gnu: livemedia-utils: Update to 2019.05.29.

* gnu/packages/video.scm (livemedia-utils): Update to 2019.05.29.

5 years agoinstaller: Fix typo.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 23:29:57 +0000 (01:29 +0200)]
installer: Fix typo.

* gnu/installer/newt/network.scm (run-technology-page): Fix plural typo.

5 years agognu: allegro: Update to 5.2.5.0.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 23:25:16 +0000 (01:25 +0200)]
gnu: allegro: Update to 5.2.5.0.

* gnu/packages/game-development.scm (allegro): Update to 5.2.5.0.
[source]: Remove patch.
* gnu/packages/patches/allegro-mesa-18.2.5-and-later.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.

5 years agognu: newt: Don't use NAME in source URI.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 21:36:19 +0000 (23:36 +0200)]
gnu: newt: Don't use NAME in source URI.

* gnu/packages/slang.scm (newt)[source]: Hard-code NAME.

5 years agognu: babl: Update to 0.1.64.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 21:35:56 +0000 (23:35 +0200)]
gnu: babl: Update to 0.1.64.

* gnu/packages/gimp.scm (babl): Update to 0.1.64.

5 years agognu: font-gnu-unifont: Update to 12.1.02.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 21:12:19 +0000 (23:12 +0200)]
gnu: font-gnu-unifont: Update to 12.1.02.

* gnu/packages/fonts.scm (font-gnu-unifont): Update to 12.1.02.

5 years agognu: font-gnu-unifont: Add Unifoundry source URL.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 19:56:24 +0000 (21:56 +0200)]
gnu: font-gnu-unifont: Add Unifoundry source URL.

* gnu/packages/fonts.scm (font-gnu-unifont)[source]: Add unifoundry.com.

5 years agognu: tmux-xpanes: Update to 4.1.1.
Tobias Geerinckx-Rice [Fri, 7 Jun 2019 17:50:08 +0000 (19:50 +0200)]
gnu: tmux-xpanes: Update to 4.1.1.

* gnu/packages/tmux.scm (tmux-xpanes): Update to 4.1.1.

5 years agoimport: utils: 'specs->package-lists' correctly matches "out".
Ludovic Courtès [Fri, 7 Jun 2019 20:55:50 +0000 (22:55 +0200)]
import: utils: 'specs->package-lists' correctly matches "out".

* guix/import/utils.scm (specs->package-lists): Match "out", not ("out").

5 years agoimport: print: Honor the outputs of inputs (!).
Ludovic Courtès [Fri, 7 Jun 2019 20:49:47 +0000 (22:49 +0200)]
import: print: Honor the outputs of inputs (!).

Fixes <http://bugs.gnu.org/35893>.
Reported by Jesse Gibbons <jgibbons2357@gmail.com>.

* guix/import/print.scm (package->code)[package-lists->code]: Preserve
OUT in the result.
* tests/print.scm (define-with-source): New macro.
(pkg): Use it.
(pkg-source): New variable.
(pkg-with-inputs, pkg-with-inputs-source): New variables.
("simple package"): Refer to 'pkg-source'.
("package with inputs"): New test.

5 years agoinstaller: Install xterm alongside ratpoison.
Ludovic Courtès [Fri, 7 Jun 2019 20:32:19 +0000 (22:32 +0200)]
installer: Install xterm alongside ratpoison.

* gnu/installer/services.scm (%system-services) <"ratpoison">: Add
xterm.

5 years agoinstaller: Install companion packages alongside i3.
Ludovic Courtès [Fri, 7 Jun 2019 20:30:54 +0000 (22:30 +0200)]
installer: Install companion packages alongside i3.

Fixes <http://bugs.gnu.org/36008>.
Suggested by Giovanni Biscuolo <g@xelera.eu>.

* gnu/installer/services.scm (%system-services) <"i3">: Add i3status,
dmenu, and st.

5 years agonls: Update 'de' translation of the manual.
Ludovic Courtès [Fri, 7 Jun 2019 19:59:26 +0000 (21:59 +0200)]
nls: Update 'de' translation of the manual.

5 years agognu: glibc-locales: Install symlinks using the normalized codeset.
Ludovic Courtès [Thu, 6 Jun 2019 14:52:15 +0000 (16:52 +0200)]
gnu: glibc-locales: Install symlinks using the normalized codeset.

Fixes <https://bugs.gnu.org/36076>.
Reported by Jack Hill <jackhill@jackhill.us>
and Giovanni Biscuolo <g@xelera.eu>

* gnu/build/locale.scm (locale->name+codeset): New file.
* gnu/packages/base.scm (make-glibc-locales): Add #:modules
and #:imported-modules.  Add a 'symlink-normalized-codesets' phase.