jackhill/guix/guix.git
4 years agoguix repl: Add script execution.
Konrad Hinsen [Sun, 14 Jun 2020 07:00:12 +0000 (09:00 +0200)]
guix repl: Add script execution.

* guix/scripts/repl.scm: Add filename options for script execution.
* doc/guix.texi (Invoking guix repl): Document it.
* tests/guix-repl.sh: Test it.
* Makefile.am: (SH_TESTS): Add it.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agognu: Add augustus.
Pierre Neidhardt [Sun, 14 Jun 2020 13:53:57 +0000 (15:53 +0200)]
gnu: Add augustus.

* gnu/packages/games.scm (augustus): New variable.

4 years agognu: diffoscope: Update to 147.
Vagrant Cascadian [Sun, 14 Jun 2020 19:57:35 +0000 (12:57 -0700)]
gnu: diffoscope: Update to 147.

* gnu/packages/diffoscope (diffoscope): Update to 147.

4 years agoservices: Add 'hurd-vm service-type'.
Jan (janneke) Nieuwenhuizen [Tue, 9 Jun 2020 22:10:28 +0000 (00:10 +0200)]
services: Add 'hurd-vm service-type'.

* gnu/services/virtualization.scm (hurd-vm-shepherd-service,
hurd-vm-disk-image): New procedures.
(%hurd-vm-operating-system, hurd-vm-service-type): New variables.
(<hurd-vm-configuration>): New record type.
* doc/guix.texi (Virtualization Services): Document it.
* gnu/services/shepherd.scm (scm->go): Use let-system, remove FIXME.  Fixes
fixes cross-building of shepherd modules for the Hurd image.

4 years agosystem: image: Make sure target is set.
Mathieu Othacehe [Sun, 14 Jun 2020 15:59:07 +0000 (17:59 +0200)]
system: image: Make sure target is set.

* gnu/system/image.scm (system-image): Move "with-parameters" call so that it
encapsulates "operating-system-bootcfg".

4 years agosystem: image: Remove left-over.
Mathieu Othacehe [Sun, 14 Jun 2020 15:57:30 +0000 (17:57 +0200)]
system: image: Remove left-over.

* gnu/system/image.scm: Remove a left-over since maybe-with-target procedure
was removed.

4 years agoscripts: system: Fix "init" command.
Mathieu Othacehe [Sun, 14 Jun 2020 12:16:37 +0000 (14:16 +0200)]
scripts: system: Fix "init" command.

This is a follow-up of 7ca533c7237622d70b423033c4506217d9ce4014. The
introduced "target" variable is shadowing the target argument.

* guix/scripts/system.scm (perform-action): Rename "target" variable to
"target*".

4 years agoinstaller: final: Make sure 'bold' font files are loaded.
Mathieu Othacehe [Sun, 14 Jun 2020 11:10:40 +0000 (13:10 +0200)]
installer: final: Make sure 'bold' font files are loaded.

* gnu/installer/newt/final.scm (run-install-shell): Force kmscon to open
'bold' font files, before the cow-store overlay is mounted.

4 years agognu: qtox: Don't use unstable tarball.
Efraim Flashner [Sun, 14 Jun 2020 13:46:00 +0000 (16:46 +0300)]
gnu: qtox: Don't use unstable tarball.

* gnu/packages/messaging.scm (tox)[source]: Don't use autogenerated
tarball.

4 years agognu: qtox: Update to 1.17.2.
Reza Alizadeh Majd [Sun, 14 Jun 2020 13:22:34 +0000 (17:52 +0430)]
gnu: qtox: Update to 1.17.2.

* gnu/packages/messaging.scm (qtox): Update to 1.17.2.
[arguments]: Add phase to disable network tests.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
4 years agognu: c-toxcore: Update to 0.2.12.
Reza Alizadeh Majd [Sun, 14 Jun 2020 13:21:38 +0000 (17:51 +0430)]
gnu: c-toxcore: Update to 0.2.12.

*  gnu/packages/messaging.scm (c-toxcore): Update to 0.2.12.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
4 years agognu: pagekite: Update to 1.5.2.200603.
Alex Griffin [Sun, 14 Jun 2020 13:36:31 +0000 (08:36 -0500)]
gnu: pagekite: Update to 1.5.2.200603.

* gnu/packages/networking.scm (pagekite): Update to 1.5.2.200603.

4 years agognu: python-socksipychain: Update to 2.1.2.
Alex Griffin [Sun, 14 Jun 2020 13:35:36 +0000 (08:35 -0500)]
gnu: python-socksipychain: Update to 2.1.2.

* gnu/packages/python-xyz.scm (python-socksipychain): Update to 2.1.2.

4 years agolint: Add 'check-for-collisions' checker.
Ludovic Courtès [Sun, 14 Jun 2020 13:06:53 +0000 (15:06 +0200)]
lint: Add 'check-for-collisions' checker.

Suggested by Edouard Klein <edk@beaver-labs.com>.

* guix/profiles.scm (check-for-collisions): Export.
* guix/lint.scm (check-profile-collisions): New procedure.
(%local-checkers): Add 'profile-collisions' checker.
* tests/lint.scm ("profile-collisions: no warnings")
("profile-collisions: propagated inputs collide")
("profile-collisions: propagated inputs collide, store items"): New tests.
* doc/guix.texi (Invoking guix lint): Document it.

4 years agoprofiles: Fix pathological performance of 'manifest-transitive-entries'.
Ludovic Courtès [Sun, 14 Jun 2020 12:51:02 +0000 (14:51 +0200)]
profiles: Fix pathological performance of 'manifest-transitive-entries'.

For packages with lots of propagated inputs,
'manifest-transitive-entries', as called from 'check-for-collisions',
would exhibit pathological behavior.  For example, "guix install cl-ana"
wouldn't complete in 1mn; now, it's down to 20s.

The issue was that manifest entries would never be 'equal?' due to the
delayed field in <manifest-entry>.

* guix/profiles.scm (manifest-transitive-entries): Use a vhash instead
of a set.  Use 'manifest-entry=?' instead of 'equal?' when checking for
equality.

4 years agodoc: Mention 'guix lint -c derivation'.
Ludovic Courtès [Sun, 14 Jun 2020 10:08:57 +0000 (12:08 +0200)]
doc: Mention 'guix lint -c derivation'.

* doc/guix.texi (Invoking guix lint): Mention the 'derivation' checker.

4 years agoui: Set 'LESS' environment variable unconditionally.
Ludovic Courtès [Sun, 14 Jun 2020 09:46:17 +0000 (11:46 +0200)]
ui: Set 'LESS' environment variable unconditionally.

Fixes <https://bugs.gnu.org/41811>.
Reported by Lars-Dominik Braun <lars@6xq.net>.

* guix/ui.scm (call-with-paginated-output-port): Remove (getenv "LESS")
call.

4 years agognu: zsh: Set default '$fpath'.
Brice Waegeneire [Wed, 27 May 2020 13:36:28 +0000 (15:36 +0200)]
gnu: zsh: Set default '$fpath'.

* gnu/packages/shells.scm (zsh)[arguments]: Add configure-flags
'disable-site-dir' and 'enable-additional-fpath'.

4 years agognu: kdeconnect: Update to 20.04.1.
Efraim Flashner [Sun, 14 Jun 2020 12:52:39 +0000 (15:52 +0300)]
gnu: kdeconnect: Update to 20.04.1.

* gnu/packages/kde.scm (kdeconnect): Update to 20.04.1.
[source]: Update source URI.
[arguments]: Adjust configure flags.

4 years agognu: Add bbswitch-module.
Pierre Neidhardt [Thu, 11 Jun 2020 20:23:59 +0000 (22:23 +0200)]
gnu: Add bbswitch-module.

* gnu/packages/linux.scm (bbswitch-module): New variable.

4 years agognu: busybox: Update to 1.31.1.
Danny Milosavljevic [Sun, 14 Jun 2020 11:03:05 +0000 (13:03 +0200)]
gnu: busybox: Update to 1.31.1.

* gnu/packages/patches/busybox-1.31.1-fix-build-with-glibc-2.31.patch: New file
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/busybox.scm (busybox): Update to 1.31.1.
[source]: Use patch.
[arguments]<#:phases>[check]: Fix test.

4 years agognu: busybox: Make build reproducible.
Danny Milosavljevic [Thu, 11 Jun 2020 21:08:45 +0000 (23:08 +0200)]
gnu: busybox: Make build reproducible.

* gnu/packages/busybox.scm (busybox)[arguments]<#:phases>[disable-timestamps]:
New phase.

4 years agognu: Use ‘license:’ prefix in (gnu packages perl).
Nicolas Goaziou [Sun, 14 Jun 2020 10:11:45 +0000 (12:11 +0200)]
gnu: Use ‘license:’ prefix in (gnu packages perl).

* gnu/packages/perl.scm: Import (guix licenses) with a #:prefix
and adjust all callers.

4 years agognu: Add perl-text-patch.
Nicolas Goaziou [Sun, 14 Jun 2020 09:47:10 +0000 (11:47 +0200)]
gnu: Add perl-text-patch.

* gnu/packages/perl.scm (perl-text-patch): New variable.

4 years agognu: Add perl-locale-maketext-lexicon.
Nicolas Goaziou [Sun, 14 Jun 2020 09:41:47 +0000 (11:41 +0200)]
gnu: Add perl-locale-maketext-lexicon.

* gnu/packages/perl.scm (perl-locale-maketext-lexicon): New variable.

4 years agognu: Add perl-ppi.
Nicolas Goaziou [Sun, 14 Jun 2020 09:38:31 +0000 (11:38 +0200)]
gnu: Add perl-ppi.

* gnu/packages/perl.scm (perl-ppi): New variable.

4 years agognu: Add perl-compress-bzip2.
Nicolas Goaziou [Sun, 14 Jun 2020 09:25:25 +0000 (11:25 +0200)]
gnu: Add perl-compress-bzip2.

* gnu/packages/perl-compression.scm (perl-compress-bzip2): New variable.

4 years agognu: Add perl-lingua-en-sentence.
Nicolas Goaziou [Sun, 14 Jun 2020 09:23:29 +0000 (11:23 +0200)]
gnu: Add perl-lingua-en-sentence.

* gnu/packages/perl.scm (perl-lingua-en-sentence): New variable.

4 years agognu: Add perl-text-haml.
Nicolas Goaziou [Sun, 14 Jun 2020 09:22:23 +0000 (11:22 +0200)]
gnu: Add perl-text-haml.

* gnu/packages/perl.scm (perl-text-haml): New variable.

4 years agognu: Add perl-tie-simple.
Nicolas Goaziou [Sun, 14 Jun 2020 09:20:03 +0000 (11:20 +0200)]
gnu: Add perl-tie-simple.

* gnu/packages/perl.scm (perl-tie-simple): New variable.

4 years agognu: Add perl-data-section-simple.
Nicolas Goaziou [Sun, 14 Jun 2020 09:19:11 +0000 (11:19 +0200)]
gnu: Add perl-data-section-simple.

* gnu/packages/perl.scm (perl-data-section-simple): New variable.

4 years agognu: Add perl-test-subcalls.
Nicolas Goaziou [Sun, 14 Jun 2020 09:17:49 +0000 (11:17 +0200)]
gnu: Add perl-test-subcalls.

* gnu/packages/perl-check.scm (perl-test-subcalls): New variable.

4 years agognu: Add perl-test-object.
Nicolas Goaziou [Sun, 14 Jun 2020 09:17:42 +0000 (11:17 +0200)]
gnu: Add perl-test-object.

* gnu/packages/perl-check.scm (perl-test-object): New variable.

4 years agognu: Add perl-hook-lexwrap.
Nicolas Goaziou [Sun, 14 Jun 2020 09:07:39 +0000 (11:07 +0200)]
gnu: Add perl-hook-lexwrap.

* gnu/packages/perl.scm (perl-hook-lexwrap): New variable.

4 years agognu: xl2tpd: Add pppd support.
Ivan Kozlov [Sun, 14 Jun 2020 09:48:59 +0000 (11:48 +0200)]
gnu: xl2tpd: Add pppd support.

* gnu/packages/vpn.scm (xl2tpd)[inputs]: Add "linux-libre-headers" and "ppp",
[arguments]: add a 'setup-environment phase to set "PPPD" and "KERNELSRC"
variables.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
4 years agognu: r-survival: Update to 3.2-3.
Ricardo Wurmus [Sun, 14 Jun 2020 06:46:15 +0000 (08:46 +0200)]
gnu: r-survival: Update to 3.2-3.

* gnu/packages/statistics.scm (r-survival): Update to 3.2-3.

4 years agognu: r-sf: Update to 0.9-4.
Ricardo Wurmus [Sun, 14 Jun 2020 06:46:15 +0000 (08:46 +0200)]
gnu: r-sf: Update to 0.9-4.

* gnu/packages/cran.scm (r-sf): Update to 0.9-4.

4 years agognu: r-units: Update to 0.6-7.
Ricardo Wurmus [Sun, 14 Jun 2020 06:46:14 +0000 (08:46 +0200)]
gnu: r-units: Update to 0.6-7.

* gnu/packages/cran.scm (r-units): Update to 0.6-7.

4 years agognu: r-calibrate: Update to 1.7.6.
Ricardo Wurmus [Sun, 14 Jun 2020 06:46:13 +0000 (08:46 +0200)]
gnu: r-calibrate: Update to 1.7.6.

* gnu/packages/cran.scm (r-calibrate): Update to 1.7.6.

4 years agognu: r-flowworkspace: Update to 4.0.6.
Ricardo Wurmus [Sun, 14 Jun 2020 06:46:13 +0000 (08:46 +0200)]
gnu: r-flowworkspace: Update to 4.0.6.

* gnu/packages/bioconductor.scm (r-flowworkspace): Update to 4.0.6.

4 years agognu: starfighter: Update to 2.2.
Kei Kebreau [Sun, 7 Jun 2020 16:43:18 +0000 (12:43 -0400)]
gnu: starfighter: Update to 2.2.

* gnu/packages/games.scm (starfighter): Update to 2.2.

4 years agognu: wesnoth: Update to 1.14.12.
Tobias Geerinckx-Rice [Thu, 11 Jun 2020 17:33:02 +0000 (19:33 +0200)]
gnu: wesnoth: Update to 1.14.12.

* gnu/packages/games.scm (wesnoth): Update to 1.14.12.

4 years agognu: snd: Update to 20.4.
Tobias Geerinckx-Rice [Thu, 11 Jun 2020 17:03:22 +0000 (19:03 +0200)]
gnu: snd: Update to 20.4.

* gnu/packages/audio.scm (snd): Update to 20.4.

4 years agognu: progress: Fix cross-compilation.
Tobias Geerinckx-Rice [Thu, 11 Jun 2020 15:42:32 +0000 (17:42 +0200)]
gnu: progress: Fix cross-compilation.

* gnu/packages/admin.scm (progress)[arguments]: Use CC-FOR-TARGET and a
target-specific pkg-config when cross-compiling.

4 years agognu: s6-portable-utils: Update to 2.2.2.4.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 19:36:45 +0000 (21:36 +0200)]
gnu: s6-portable-utils: Update to 2.2.2.4.

* gnu/packages/skarnet.scm (s6-portable-utils): Update to 2.2.2.4.

4 years agognu: gnome-boxes: Update to 3.36.5.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 19:36:31 +0000 (21:36 +0200)]
gnu: gnome-boxes: Update to 3.36.5.

* gnu/packages/gnome.scm (gnome-boxes): Update to 3.36.5.

4 years agognu: evince: Update to 3.36.5.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 19:36:22 +0000 (21:36 +0200)]
gnu: evince: Update to 3.36.5.

* gnu/packages/gnome.scm (evince): Update to 3.36.5.

4 years agognu: python-shellingham: Update to 1.3.2.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 19:07:11 +0000 (21:07 +0200)]
gnu: python-shellingham: Update to 1.3.2.

* gnu/packages/python-xyz.scm (python-shellingham): Update to 1.3.2.
[arguments]: Add ‘restore-setup.py’ phase.

4 years agognu: xapian: Update to 1.4.16.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 19:03:44 +0000 (21:03 +0200)]
gnu: xapian: Update to 1.4.16.

* gnu/packages/search.scm (xapian): Update to 1.4.16.
(python-xapian-bindings)[source]: Update content hash.

4 years agognu: rclone: Update to 1.52.1.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 19:01:40 +0000 (21:01 +0200)]
gnu: rclone: Update to 1.52.1.

* gnu/packages/sync.scm (rclone): Update to 1.52.1.

4 years agognu: cogl: Update to 1.22.8.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 18:26:50 +0000 (20:26 +0200)]
gnu: cogl: Update to 1.22.8.

* gnu/packages/gnome.scm (cogl): Update to 1.22.8.

4 years agognu: gimp: Update to 2.10.20.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 18:26:32 +0000 (20:26 +0200)]
gnu: gimp: Update to 2.10.20.

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

4 years agognu: gegl: Update to 0.4.24.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 18:26:21 +0000 (20:26 +0200)]
gnu: gegl: Update to 0.4.24.

* gnu/packages/gimp.scm (gegl): Update to 0.4.24.

4 years agognu: babl: Update to 0.1.78.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 18:26:12 +0000 (20:26 +0200)]
gnu: babl: Update to 0.1.78.

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

4 years agognu: libtextstyle: Update to 0.20.2.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 18:25:54 +0000 (20:25 +0200)]
gnu: libtextstyle: Update to 0.20.2.

* gnu/packages/gettext.scm (libtextstyle): Update to 0.20.2.

4 years agognu: ltris: Update to 1.0.20.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 16:16:56 +0000 (18:16 +0200)]
gnu: ltris: Update to 1.0.20.

* gnu/packages/games.scm (ltris): Update to 1.0.20.

4 years agognu: julius: Update to 1.4.1.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 16:14:40 +0000 (18:14 +0200)]
gnu: julius: Update to 1.4.1.

* gnu/packages/games.scm (julius): Update to 1.4.1.

4 years agognu: angband: Use HTTPS.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:57:50 +0000 (17:57 +0200)]
gnu: angband: Use HTTPS.

* gnu/packages/games.scm (angband)[source, home-page]: Use HTTPS.

4 years agognu: angband: Update to 4.2.1.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:57:38 +0000 (17:57 +0200)]
gnu: angband: Update to 4.2.1.

* gnu/packages/games.scm (angband): Update to 4.2.1.

4 years agognu: libolm: Update to 3.1.5.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:50:51 +0000 (17:50 +0200)]
gnu: libolm: Update to 3.1.5.

* gnu/packages/crypto.scm (libolm): Update to 3.1.5.

4 years agognu: gnome-chess: Update to 3.36.1.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:26:02 +0000 (17:26 +0200)]
gnu: gnome-chess: Update to 3.36.1.

* gnu/packages/games.scm (gnome-chess): Update to 3.36.1.

4 years agognu: gnome-chess: Don't use NAME in source URI.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:25:55 +0000 (17:25 +0200)]
gnu: gnome-chess: Don't use NAME in source URI.

* gnu/packages/games.scm (gnome-chess)[source]: Hard-code NAME.

4 years agognu: facter: Update to 4.0.26.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:13:24 +0000 (17:13 +0200)]
gnu: facter: Update to 4.0.26.

* gnu/packages/admin.scm (facter): Update to 4.0.26.

4 years agognu: rust-tokio: Update to 0.2.21.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:13:14 +0000 (17:13 +0200)]
gnu: rust-tokio: Update to 0.2.21.

* gnu/packages/crates-io.scm (rust-tokio): Update to 0.2.21.

4 years agognu: rust-serde-bytes: Fix typo in synopsis.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:11:47 +0000 (17:11 +0200)]
gnu: rust-serde-bytes: Fix typo in synopsis.

* gnu/packages/crates-io.scm (rust-serde-bytes)[synopsis]: Remove ‘of’.

4 years agognu: rust-serde-bytes: Update to 0.11.5.
Tobias Geerinckx-Rice [Sat, 13 Jun 2020 15:11:08 +0000 (17:11 +0200)]
gnu: rust-serde-bytes: Update to 0.11.5.

* gnu/packages/crates-io.scm (rust-serde-bytes): Update to 0.11.5.

4 years agognu: alsa-modular-synth: Hide default GCC.
Ricardo Wurmus [Sat, 13 Jun 2020 21:48:41 +0000 (23:48 +0200)]
gnu: alsa-modular-synth: Hide default GCC.

* gnu/packages/audio.scm (alsa-modular-synth)[native-inputs]: Distinguish
GCC-5.
[arguments]: Add build phase "hide-default-gcc".

4 years agognu: alsa-modular-synth: Add patch to fix vocoder build error.
Ricardo Wurmus [Sat, 13 Jun 2020 21:47:14 +0000 (23:47 +0200)]
gnu: alsa-modular-synth: Add patch to fix vocoder build error.

* gnu/packages/patches/alsa-modular-synth-fix-vocoder.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/audio.scm (alsa-modular-synth)[source]: Add it.

4 years agognu: check@0.12: Do not inherit replacements from check.
Marius Bakke [Sat, 13 Jun 2020 17:23:27 +0000 (19:23 +0200)]
gnu: check@0.12: Do not inherit replacements from check.

* gnu/packages/check.scm (check-0.12): Use INHERIT instead of PACKAGE/INHERIT.

4 years agognu: libnet: Update home page.
Marius Bakke [Sat, 13 Jun 2020 17:00:42 +0000 (19:00 +0200)]
gnu: libnet: Update home page.

* gnu/packages/networking.scm (libnet)[home-page]: Adjust to current, as
referred to from the previous.

4 years agognu: libnet: Update to 1.2.
Marius Bakke [Sat, 13 Jun 2020 16:58:28 +0000 (18:58 +0200)]
gnu: libnet: Update to 1.2.

* gnu/packages/networking.scm (libnet): Update to 1.2.
[source]: Switch to URL-FETCH.
[arguments]: Remove chdir phase.
[native-inputs]: Remove AUTOCONF, AUTOMAKE, and LIBTOOL.  Add PERL.

4 years agognu: jucipp: Build with Clang 10.
Marius Bakke [Thu, 11 Jun 2020 22:00:03 +0000 (00:00 +0200)]
gnu: jucipp: Build with Clang 10.

* gnu/packages/text-editors.scm (jucipp)[inputs]: Change from CLANG to CLANG-10.

4 years agognu: ghc-regex-pcre-builtin: Update home page.
Marius Bakke [Tue, 9 Jun 2020 12:05:09 +0000 (14:05 +0200)]
gnu: ghc-regex-pcre-builtin: Update home page.

* gnu/packages/haskell-xyz.scm (ghc-regex-pcre-builtin)[home-page]: Set to the
correct home page, not the alternative 'ghc-regex-pcre' library.

4 years agognu: perl-net-dns-resolver-programmable: Remove "v" prefix from version string.
Marius Bakke [Mon, 25 May 2020 11:29:06 +0000 (13:29 +0200)]
gnu: perl-net-dns-resolver-programmable: Remove "v" prefix from version string.

* gnu/packages/networking.scm (perl-net-dns-resolver-programmable)[version]:
Remove "v" prefix.
[source](uri): Adjust accordingly.

4 years agoMerge branch 'staging'
Marius Bakke [Sat, 13 Jun 2020 20:52:25 +0000 (22:52 +0200)]
Merge branch 'staging'

4 years agognu: Add r-pcatools.
Ricardo Wurmus [Sat, 13 Jun 2020 20:35:29 +0000 (22:35 +0200)]
gnu: Add r-pcatools.

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

4 years agognu: libnode: Delete unused phase.
Ricardo Wurmus [Sat, 13 Jun 2020 18:03:42 +0000 (20:03 +0200)]
gnu: libnode: Delete unused phase.

This is a follow-up to commit bb310a1976198eacdc67e0712e19735cd656b21d.

* gnu/packages/node.scm (libnode)[arguments]: Delete phase
"patch-npm-shebang".

4 years agognu: Add meshlab.
Ekaitz Zarraga [Fri, 12 Jun 2020 21:41:18 +0000 (23:41 +0200)]
gnu: Add meshlab.

* gnu/packages/engineering.scm (meshlab): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4 years agognu: perf: Set 'CC'.
Ludovic Courtès [Fri, 12 Jun 2020 20:55:52 +0000 (22:55 +0200)]
gnu: perf: Set 'CC'.

* gnu/packages/linux.scm (perf)[arguments]: Add "CC=gcc" to #:make-flags.
This fixes a (harmless?) error message during the 'configure' phase.

4 years agognu: perf: Restore use of dependencies.
Ludovic Courtès [Fri, 12 Jun 2020 20:53:22 +0000 (22:53 +0200)]
gnu: perf: Restore use of dependencies.

* gnu/packages/linux.scm (perf)[arguments]: Remove C_INCLUDE_PATH from
 #:make-flags.  It is no longer needed since the switch to C_INCLUDE_PATH
in 2073b55e6b964cb8ca15e8c74cb32dac00f05f0d and would prevent
dependencies from being found.

4 years agognu: guile-sqlite3: Update to 0.1.2.
Danny Milosavljevic [Sat, 13 Jun 2020 15:16:03 +0000 (17:16 +0200)]
gnu: guile-sqlite3: Update to 0.1.2.

* gnu/packages/guile.scm (guile-sqlite3): Update to 0.1.2.

4 years agoRevert "gnu: node: Build shared library."
Ricardo Wurmus [Sat, 13 Jun 2020 15:01:09 +0000 (17:01 +0200)]
Revert "gnu: node: Build shared library."

This reverts commit f9311eaa7cb7849e9b17162c93b874c74d8fcbbd.
Adding "--shared" replaces the executable with the shared library, breaking
all users of the nodejs executable.

4 years agognu: r-v8: Use libnode instead of node.
Ricardo Wurmus [Sat, 13 Jun 2020 15:00:30 +0000 (17:00 +0200)]
gnu: r-v8: Use libnode instead of node.

* gnu/packages/cran.scm (r-v8)[inputs]: Replace node with libnode.

4 years agognu: Add libnode.
Ricardo Wurmus [Sat, 13 Jun 2020 15:00:15 +0000 (17:00 +0200)]
gnu: Add libnode.

* gnu/packages/node.scm (libnode): New variable.

4 years agoimage: Remove 'maybe-with-target'.
Mathieu Othacehe [Sat, 13 Jun 2020 14:55:12 +0000 (16:55 +0200)]
image: Remove 'maybe-with-target'.

* gnu/system/image.scm (maybe-with-target): Remove,
(system-image): adapt accordingly.

4 years agoinstall: final: Add some logging.
Mathieu Othacehe [Sat, 13 Jun 2020 13:05:22 +0000 (15:05 +0200)]
install: final: Add some logging.

* gnu/installer/final.scm (umount-cow-store): Add some logging.

4 years agoimage: Add 'target' support.
Mathieu Othacehe [Sat, 13 Jun 2020 12:01:18 +0000 (14:01 +0200)]
image: Add 'target' support.

* gnu/image.scm (<image>)[target]: New field,
(image-target): new public method.
* gnu/system/image.scm (hurd-disk-image): Set "i586-pc-gnu" as image 'target'
field,
(maybe-with-target): new procedure,
(system-image): honor image 'target' field using the above procedure.

4 years agoimage: Make 'find-image' non-monadic.
Jan (janneke) Nieuwenhuizen [Thu, 11 Jun 2020 20:52:12 +0000 (22:52 +0200)]
image: Make 'find-image' non-monadic.

* gnu/system/image.scm (find-image): Make non-monadic.  Add 'target'
parameter.
* gnu/tests/install.scm (run-install): Update caller,
passing (%current-target-system).
* guix/scripts/system.scm (perform-action): Likewise.

4 years agognome: gnome-desktop: Add bubblewrap as an input.
Christopher Baines [Sun, 7 Jun 2020 20:20:08 +0000 (21:20 +0100)]
gnome: gnome-desktop: Add bubblewrap as an input.

This is expected to be available, oddly as libseccomp is available.  These
changes fix thumbnails for Nautilus.

* gnu/packages/gnome.scm (gnome-desktop)[arguments]: Add 'patch-bubblewrap
phase.
[inputs]: Add bubblewrap.

4 years agognu: emacs-debbugs: Update to 0.23.
Michael Rohleder [Sat, 13 Jun 2020 06:28:11 +0000 (14:28 +0800)]
gnu: emacs-debbugs: Update to 0.23.

* gnu/packages/emacs-xyz.scm (emacs-debbugs): Update to 0.23.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
4 years agoservices: hurd: Remove deprecated 'hurd-getty-service' wrapper.
Jan (janneke) Nieuwenhuizen [Sat, 13 Jun 2020 08:04:51 +0000 (10:04 +0200)]
services: hurd: Remove deprecated 'hurd-getty-service' wrapper.

* gnu/services/hurd.scm (hurd-getty-service): Remove.

4 years agosystem: hurd: Remove 'cross-hurd-image' hack.
Jan (janneke) Nieuwenhuizen [Wed, 27 May 2020 07:13:19 +0000 (09:13 +0200)]
system: hurd: Remove 'cross-hurd-image' hack.

The initial

    guix build -f gnu/system/hurd.scm

hack has been superseded by regular guix system (cross) build.

* gnu/system/hurd.scm (compile-manifest, cross-hurd-image): Remove.

4 years agosystem: bare-hurd.tmpl: Add openssh-sans-x client and service.
Jan (janneke) Nieuwenhuizen [Thu, 7 May 2020 17:14:07 +0000 (19:14 +0200)]
system: bare-hurd.tmpl: Add openssh-sans-x client and service.

* gnu/system/examples/bare-hurd.tmpl (%hurd-os)[packages]: Add openssh-sans-x.
[services]: Add openssh-service.  Add example usage.

4 years agognu: r-mzr: Update to 2.22.0.
Ricardo Wurmus [Fri, 12 Jun 2020 23:13:00 +0000 (01:13 +0200)]
gnu: r-mzr: Update to 2.22.0.

* gnu/packages/bioinformatics.scm (r-mzr): Update to 2.22.0.
[native-inputs]: Add r-knitr.

4 years agognu: r-biodist: Update to 1.60.0.
Ricardo Wurmus [Fri, 12 Jun 2020 23:06:00 +0000 (01:06 +0200)]
gnu: r-biodist: Update to 1.60.0.

* gnu/packages/bioconductor.scm (r-biodist): Update to 1.60.0.

4 years agognu: r-biocworkflowtools: Update to 1.14.0.
Ricardo Wurmus [Fri, 12 Jun 2020 23:05:55 +0000 (01:05 +0200)]
gnu: r-biocworkflowtools: Update to 1.14.0.

* gnu/packages/bioconductor.scm (r-biocworkflowtools): Update to 1.14.0.

4 years agognu: r-biocset: Update to 1.2.1.
Ricardo Wurmus [Fri, 12 Jun 2020 23:05:51 +0000 (01:05 +0200)]
gnu: r-biocset: Update to 1.2.1.

* gnu/packages/bioconductor.scm (r-biocset): Update to 1.2.1.
[native-inputs]: Add r-knitr.

4 years agognu: r-biocpkgtools: Update to 1.6.0.
Ricardo Wurmus [Fri, 12 Jun 2020 23:05:46 +0000 (01:05 +0200)]
gnu: r-biocpkgtools: Update to 1.6.0.

* gnu/packages/bioconductor.scm (r-biocpkgtools): Update to 1.6.0.

4 years agognu: r-biocor: Update to 1.12.0.
Ricardo Wurmus [Fri, 12 Jun 2020 23:05:37 +0000 (01:05 +0200)]
gnu: r-biocor: Update to 1.12.0.

* gnu/packages/bioconductor.scm (r-biocor): Update to 1.12.0.
[native-inputs]: Add r-knitr.

4 years agognu: r-bioconcotk: Update to 1.8.0.
Ricardo Wurmus [Fri, 12 Jun 2020 23:05:32 +0000 (01:05 +0200)]
gnu: r-bioconcotk: Update to 1.8.0.

* gnu/packages/bioconductor.scm (r-bioconcotk): Update to 1.8.0.
[native-inputs]: Add r-knitr.