jackhill/guix/guix.git
2 years agoimport: pypi: Use 'with-error-handling'.
Ludovic Courtès [Wed, 2 Feb 2022 14:53:55 +0000 (15:53 +0100)]
import: pypi: Use 'with-error-handling'.

* guix/scripts/import/pypi.scm (guix-import-pypi): Wrap body in
'with-error-handling'.

2 years agognu: perf: Remove input labels.
Ludovic Courtès [Wed, 2 Feb 2022 14:40:17 +0000 (15:40 +0100)]
gnu: perf: Remove input labels.

* gnu/packages/linux.scm (perf)[native-inputs, inputs]: Remove labels.

2 years agognu: perf: Help 'perf report --symfs' find separate debug info files.
Ludovic Courtès [Wed, 2 Feb 2022 14:36:06 +0000 (15:36 +0100)]
gnu: perf: Help 'perf report --symfs' find separate debug info files.

* gnu/packages/linux.scm (perf)[arguments]: In 'configure' phase, modify
"util/dso.c".

2 years agoinstaller: Use system-wide guix for system init.
Josselin Poiret [Mon, 31 Jan 2022 17:45:17 +0000 (18:45 +0100)]
installer: Use system-wide guix for system init.

* gnu/installer.scm (installer-program): Remove dependency on the guix
package for the PATH.
* gnu/installer/final.scm (install-system): Set PATH inside container
to /run/current-system/profile/bin/.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Make dump archive creation optional and selective.
Josselin Poiret [Sat, 15 Jan 2022 13:50:11 +0000 (14:50 +0100)]
installer: Make dump archive creation optional and selective.

* gnu/installer.scm (installer-program): Let the installer customize
the dump archive.
* gnu/installer/dump.scm (prepare-dump, make-dump): Split make-dump in
prepare-dump, which copies the files necessary for the dump, and
make-dump which creates the archive.
* gnu/installer/record.scm (installer): Add report-page field.  Change
documented return value of exit-error.
* gnu/installer/newt.scm (exit-error): Change arguments to be a string
containing the error.  Let the user choose between exiting and
initiating a dump.
(report-page): Add new variable.
* gnu/installer/newt/page.scm (run-dump-page): New variable.
* gnu/installer/newt/dump.scm: Delete it.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Turn passwords into opaque records.
Josselin Poiret [Sat, 15 Jan 2022 13:50:10 +0000 (14:50 +0100)]
installer: Turn passwords into opaque records.

* gnu/installer/user.scm (<secret>, secret?, make-secret,
secret-content): Add opaque <secret> record that boxes its contents,
with a custom printer that doesn't display anything.
* gnu/installer/newt/user.scm (run-user-add-page, run-user-page): Box
it.
* gnu/installer/final.scm (create-user-database): Unbox it.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Use dynamic-wind to setup installer.
Josselin Poiret [Sat, 15 Jan 2022 13:50:09 +0000 (14:50 +0100)]
installer: Use dynamic-wind to setup installer.

* gnu/installer.scm (installer-program): Use dynamic-wind, so that
completely uncaught exceptions can be printed properly.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Add error page when running external commands.
Josselin Poiret [Sat, 15 Jan 2022 13:50:08 +0000 (14:50 +0100)]
installer: Add error page when running external commands.

* gnu/installer/newt.scm (newt-run-command): Add it.
* gnu/installer/newt/page.scm (%ok-button, %exit-button,
%default-buttons, make-newt-buttons, run-textbox-page): Add them.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Use named prompt to abort or break installer steps.
Josselin Poiret [Sat, 15 Jan 2022 13:50:07 +0000 (14:50 +0100)]
installer: Use named prompt to abort or break installer steps.

* gnu/installer/steps.scm (run-installer-steps): Set up
'installer-step prompt.
* gnu/installer/newt/ethernet.scm (run-ethernet-page)
* gnu/installer/newt/final.scm (run-config-display-page,
run-install-failed-page)
* gnu/installer/newt/keymap.scm (run-layout-page, run-variant-page)
* gnu/installer/newt/locale.scm (run-language-page,
run-territory-page, run-codeset-page, run-modifier-page,
run-locale-page)
* gnu/installer/newt/network.scm (run-technology-page,
wait-service-online)
* gnu/installer/newt/page.scm (run-listbox-selection-page,
run-checkbox-tree-page)
* gnu/installer/newt/partition.scm (button-exit-action)
* gnu/installer/newt/services.scm (run-desktop-environments-cbt-page,
run-networking-cbt-page, run-other-services-cbt-page,
run-network-management-page)
* gnu/installer/newt/timezone.scm (run-timezone-page)
* gnu/installer/newt/user.scm (run-user-page)
* gnu/installer/newt/welcome.scm (run-menu-page)
* gnu/installer/newt/wifi.scm (run-wifi-page): Use the 'installer-step
prompt to abort.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Add nano to PATH.
Josselin Poiret [Sat, 15 Jan 2022 13:50:06 +0000 (14:50 +0100)]
installer: Add nano to PATH.

* gnu/installer.scm (installer-program): Add nano to the installer
PATH.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Replace run-command by invoke in newt/page.scm.
Josselin Poiret [Sat, 15 Jan 2022 13:50:05 +0000 (14:50 +0100)]
installer: Replace run-command by invoke in newt/page.scm.

* gnu/installer/newt/page.scm (edit-file): Replace it.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Fix run-file-textbox-page when edit-button is #f.
Josselin Poiret [Sat, 15 Jan 2022 13:50:04 +0000 (14:50 +0100)]
installer: Fix run-file-textbox-page when edit-button is #f.

* gnu/installer/newt/page.scm (run-file-textbox-page): Check if
edit-button is #f.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Raise condition when mklabel fails.
Josselin Poiret [Sat, 15 Jan 2022 13:50:03 +0000 (14:50 +0100)]
installer: Raise condition when mklabel fails.

* gnu/installer/parted.scm (mklabel): Do it.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Use run-command-in-installer in (gnu installer parted).
Josselin Poiret [Sat, 15 Jan 2022 13:50:02 +0000 (14:50 +0100)]
installer: Use run-command-in-installer in (gnu installer parted).

* gnu/installer/parted.scm (remove-logical-devices,
create-btrfs-file-system, create-ext4-file-system,
create-fat16-file-system, create-fat32-file-system,
create-jfs-file-system, create-ntfs-file-system,
create-xfs-file-system, create-swap-partition, luks-format-and-open,
luks-close): Use run-command-in-installer.
(with-null-output-ports): Remove.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Add installer-specific run command process.
Josselin Poiret [Sat, 15 Jan 2022 13:50:01 +0000 (14:50 +0100)]
installer: Add installer-specific run command process.

* gnu/installer/record.scm (installer)[run-command]: Add field.
* gnu/installer/utils.scm (run-command-in-installer): Add parameter.
* gnu/installer.scm (installer-program): Parameterize
run-command-in-installer with current installer's run-command.
* gnu/installer/newt.scm (newt-run-command): New variable.
(newt-installer): Use it.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Capture external commands output.
Josselin Poiret [Sat, 15 Jan 2022 13:50:00 +0000 (14:50 +0100)]
installer: Capture external commands output.

* gnu/installer/utils.scm (run-external-command-with-handler,
run-external-command-with-line-hooks): New variables.
(run-command): Use run-external-command-with-line-hooks.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Remove specific logging code.
Josselin Poiret [Sat, 15 Jan 2022 13:49:59 +0000 (14:49 +0100)]
installer: Remove specific logging code.

* gnu/installer/final.scm (install-system): Remove command logging to
syslog, as this is taken care of by the new facilities.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Keep PATH inside the install container.
Josselin Poiret [Sat, 15 Jan 2022 13:49:58 +0000 (14:49 +0100)]
installer: Keep PATH inside the install container.

* gnu/installer/final.scm (install-system): Set PATH inside the
container.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Un-export syslog syntax.
Josselin Poiret [Sat, 15 Jan 2022 13:49:57 +0000 (14:49 +0100)]
installer: Un-export syslog syntax.

* gnu/installer/utils.scm (syslog): Remove export.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Use new installer-log-line everywhere.
Josselin Poiret [Sat, 15 Jan 2022 13:49:56 +0000 (14:49 +0100)]
installer: Use new installer-log-line everywhere.

* gnu/installer.scm (installer-program)
* gnu/installer/final.scm (install-locale)
* gnu/installer/newt.scm (init)
* gnu/installer/newt/final.scm (run-final-page)
* gnu/installer/newt/page.scm (run-form-with-clients)
* gnu/installer/newt/partition.scm (run-partitioning-page)
* gnu/installer/parted.scm (eligible-devices, mkpart,
luks-format-and-open, luks-close, mount-user-partitions,
umount-user-partitions, free-parted):
* gnu/installer/steps.scm (run-installer-steps):
* gnu/installer/utils.scm (run-command, send-to-clients): Use it.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Generalize logging facility.
Josselin Poiret [Sat, 15 Jan 2022 13:49:55 +0000 (14:49 +0100)]
installer: Generalize logging facility.

* gnu/installer/utils.scm (%syslog-line-hook, open-new-log-port,
installer-log-port, %installer-log-line-hook, %display-line-hook,
%default-installer-line-hooks, installer-log-line): Add new
variables.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Use define instead of let at top-level.
Josselin Poiret [Sat, 15 Jan 2022 13:49:54 +0000 (14:49 +0100)]
installer: Use define instead of let at top-level.

* gnu/installer.scm (installer-program): Improve readability by using
define at top-level.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2 years agoinstaller: Add crash dump upload support.
Mathieu Othacehe [Wed, 29 Dec 2021 12:45:26 +0000 (13:45 +0100)]
installer: Add crash dump upload support.

Suggested-by: Josselin Poiret <dev@jpoiret.xyz>
* gnu/installer/dump.scm: New file.
* gnu/installer/newt/dump.scm: New file.
* gnu/local.mk (INSTALLER_MODULES): Add them.
* gnu/installer/record.scm (<installer>)[dump-page]: New field.
* gnu/installer/steps.scm (%current-result): New variable.
(run-installer-steps): Update it.
* gnu/installer.scm (installer-program): Add tar and gip to the installer
path. Add guile-webutils and gnutls to the Guile extensions. Generate and send
the crash dump report.
* gnu/installer/newt.scm (exit-error): Add a report argument. Display the
report id.
(dump-page): New procedure.
(newt-installer): Update it.

2 years agognu: utf-8-lineseparator: Update to cj8.
jgart [Tue, 1 Feb 2022 17:26:42 +0000 (12:26 -0500)]
gnu: utf-8-lineseparator: Update to cj8.

* gnu/packages/textutils.scm (utf-8-lineseparator): Update to cj8.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2 years agognu: texlive-latex-base: Skip JIT formats on riscv64-linux.
Efraim Flashner [Wed, 18 Aug 2021 08:28:12 +0000 (11:28 +0300)]
gnu: texlive-latex-base: Skip JIT formats on riscv64-linux.

* gnu/packages/tex.scm (texlive-latex-base)[arguments]: Adjust custom
'build phase to also skip the jit formats on riscv64-linux.

2 years agognu: syncthing: Add release-monitoring-url.
Efraim Flashner [Wed, 2 Feb 2022 10:01:15 +0000 (12:01 +0200)]
gnu: syncthing: Add release-monitoring-url.

* gnu/packages/syncthing.scm (syncthing)[properties]: New field.

2 years agognu: urlscan: Update to 0.9.9.
Efraim Flashner [Wed, 2 Feb 2022 09:44:46 +0000 (11:44 +0200)]
gnu: urlscan: Update to 0.9.9.

* gnu/packages/mail.scm (urlscan): Update to 0.9.9.

2 years agognu: ruby-rubocop: Skip tests on riscv64-linux.
Efraim Flashner [Wed, 2 Feb 2022 09:25:30 +0000 (11:25 +0200)]
gnu: ruby-rubocop: Skip tests on riscv64-linux.

* gnu/packages/ruby.scm (ruby-rubocop)[arguments]: Skip tests when
building for riscv64-linux.

2 years agognu: ruby-stackprof: Adjust skipped test on riscv64-linux.
Efraim Flashner [Wed, 2 Feb 2022 08:50:00 +0000 (10:50 +0200)]
gnu: ruby-stackprof: Adjust skipped test on riscv64-linux.

* gnu/packages/ruby.scm (ruby-stackprof)[arguments]: On riscv64-linux
adjust the 'skip-dubious-test phase.

2 years agoservices: tlp: Add config variables for battery charging.
Attila Lendvai [Thu, 23 Sep 2021 06:09:10 +0000 (08:09 +0200)]
services: tlp: Add config variables for battery charging.

* gnu/services/pm.scm (tlp-configuration): Add start-charge-thresh-bat0,
stop-charge-thresh-bat0, start-charge-thresh-bat1, stop-charge-thresh-bat1.
* doc/guix.texi (Power Management Services): Document them.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
2 years agognu: xfce4-cpufreq-plugin: Update to 1.2.6.
Michael Rohleder [Sun, 30 Jan 2022 10:49:52 +0000 (11:49 +0100)]
gnu: xfce4-cpufreq-plugin: Update to 1.2.6.

* gnu/packages/xfce.scm (xfce4-cpufreq-plugin): Update to 1.2.6.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2 years agognu: Add wireviz.
Evgeny Pisemsky [Tue, 1 Feb 2022 13:45:45 +0000 (16:45 +0300)]
gnu: Add wireviz.

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

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2 years agoservices/sound: Add a udev extension for the pulseaudio service type.
Maxim Cournoyer [Mon, 31 Jan 2022 03:24:02 +0000 (22:24 -0500)]
services/sound: Add a udev extension for the pulseaudio service type.

PulseAudio provides udev rules used to adjust the configuration of certain
hardware (e.g., sound cards); ensure they get used.

* gnu/services/sound.scm (pulseaudio-service-type): Extend the
udev-service-type with the pulseaudio package.

2 years agoservices: zabbix-frontend: Support custom server package.
Marius Bakke [Tue, 1 Feb 2022 18:28:42 +0000 (19:28 +0100)]
services: zabbix-frontend: Support custom server package.

* gnu/services/monitoring.scm (%zabbix-front-end-configuration-nginx): Rename
to ...
(zabbix-front-end-nginx-configuration): ... this.  Take server package and
FastCGI parameters from ...
(zabbix-front-end-configuration): ... here.  Add PACKAGE and FASTCGI-PARAMS
fields, remove NGINX.
(zabbix-front-end-service-type): Adjust for renamed procedure.
* doc/guix.texi (Monitoring Services)[Zabbix front-end]: Regenerate documentation.

2 years agognu: libomp: Update to 13.0.0.
Marius Bakke [Tue, 1 Feb 2022 17:43:12 +0000 (18:43 +0100)]
gnu: libomp: Update to 13.0.0.

* gnu/packages/llvm.scm (libomp): Update to 13.0.0.
[arguments]: Add workaround to #:configure-flags.
[native-inputs]: Change from CLANG-9 and LLVM-9 to CLANG and LLVM.

2 years agognu: LLVM: Switch to 13 as the default.
Marius Bakke [Sun, 30 Jan 2022 17:29:57 +0000 (18:29 +0100)]
gnu: LLVM: Switch to 13 as the default.

* gnu/packages/llvm.scm (llvm, clang-runtime, clang, clang-toolchain): Use
version 13.
* gnu/packages/gnuzilla.scm (mozjs-78)[native-inputs]: Change from LLVM to LLVM-9.
* gnu/packages/rust.scm (rust-1.39, rust-1.40)[inputs]: Likewise.
* gnu/packages/debug.scm (c-reduce)[inputs]: Stick with CLANG-9 and/or LLVM-9.
* gnu/packages/diffoscope.scm (diffoscope)[inputs]: Likewise.
* gnu/packages/linux.scm (bcc, bpftrace)[inputs]: Likewise.
* gnu/packages/llvm.scm (libclc, libomp)[native-inputs]: Likewise.
* gnu/packages/games.scm (hedgewars)[native-inputs]: Likewise.
* gnu/packages/graphics.scm (openshadinglanguage)[native-inputs]: Likewise.
* gnu/packages/opencl.scm (pocl)[inputs]: Likewise.

2 years agognu: doctest: Update to 2.4.8.
Marius Bakke [Sun, 30 Jan 2022 16:49:34 +0000 (17:49 +0100)]
gnu: doctest: Update to 2.4.8.

* gnu/packages/check.scm (doctest): Update to 2.4.8.

2 years agognu: json-modern-cxx: Fix cross-compilation.
Marius Bakke [Sun, 30 Jan 2022 16:43:15 +0000 (17:43 +0100)]
gnu: json-modern-cxx: Fix cross-compilation.

* gnu/packages/cpp.scm (json-modern-cxx)[native-inputs]: Move DOCTEST ...
[inputs]: ... here.

2 years agognu: json-modern-cxx: Remove input labels.
Marius Bakke [Sun, 30 Jan 2022 16:40:01 +0000 (17:40 +0100)]
gnu: json-modern-cxx: Remove input labels.

* gnu/packages/cpp.scm (json-modern-cxx)[native-inputs]: Remove labels.
[arguments]: Use SEARCH-INPUT-FILE.

2 years agognu: fifo-map: Fix cross-compilation.
Marius Bakke [Sun, 30 Jan 2022 16:33:07 +0000 (17:33 +0100)]
gnu: fifo-map: Fix cross-compilation.

* gnu/packages/cpp.scm (fifo-map)[native-inputs]: Move CATCH-FRAMEWORK2-1 ...
[inputs]: ... here.

2 years agognu: fifo-map: Use a release tag.
Marius Bakke [Sun, 30 Jan 2022 16:28:43 +0000 (17:28 +0100)]
gnu: fifo-map: Use a release tag.

* gnu/packages/cpp.scm (fifo-map): Update to 1.0.0, which is
one (inconsequential) commit ahead of our custom "1.1.1" version.
[arguments]: Respect TESTS? in check phase while at it.

2 years agognu: json-modern-cxx: Run tests in parallel.
Marius Bakke [Sun, 30 Jan 2022 16:22:32 +0000 (17:22 +0100)]
gnu: json-modern-cxx: Run tests in parallel.

* gnu/packages/cpp.scm (json-modern-cxx)[arguments]: Respect PARALLEL-TESTS?
in check phase.

2 years agognu: json-modern-cxx: Update to 3.10.5.
Marius Bakke [Sun, 30 Jan 2022 16:20:31 +0000 (17:20 +0100)]
gnu: json-modern-cxx: Update to 3.10.5.

* gnu/packages/cpp.scm (json-modern-cxx): Update to 3.10.5.
[source](snippet): Adjust for upstream changes.
[arguments]: Remove obsolete workaround.

2 years agodoc: Fix typo.
Maxim Cournoyer [Mon, 31 Jan 2022 16:38:51 +0000 (11:38 -0500)]
doc: Fix typo.

* doc/guix.texi (Sound Services): Fix typo.

2 years agognu: librecad: Fix build with boost 1.76.
Guillaume Le Vaillant [Tue, 1 Feb 2022 19:00:31 +0000 (20:00 +0100)]
gnu: librecad: Fix build with boost 1.76.

Fixes <https://issues.guix.gnu.org/53694>.

* gnu/packages/patches/librecad-support-for-boost-1.76.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/engineering.scm (librecad)[source]: Use it.

2 years agognu: r-nloptr: Update to 2.0.0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:35 +0000 (17:01 +0100)]
gnu: r-nloptr: Update to 2.0.0.

* gnu/packages/statistics.scm (r-nloptr): Update to 2.0.0.
[propagated-inputs]: Add r-testthat.

2 years agognu: r-quantreg: Update to 5.87.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:35 +0000 (17:01 +0100)]
gnu: r-quantreg: Update to 5.87.

* gnu/packages/statistics.scm (r-quantreg): Update to 5.87.
[propagated-inputs]: Remove r-conquer.

2 years agognu: r-rrcov: Update to 1.6-1.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:35 +0000 (17:01 +0100)]
gnu: r-rrcov: Update to 1.6-1.

* gnu/packages/statistics.scm (r-rrcov): Update to 1.6-1.

2 years agognu: r-segmented: Update to 1.4-0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:35 +0000 (17:01 +0100)]
gnu: r-segmented: Update to 1.4-0.

* gnu/packages/statistics.scm (r-segmented): Update to 1.4-0.
[propagated-inputs]: Add r-mass.

2 years agognu: r-rcpparmadillo: Update to 0.10.8.1.0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:34 +0000 (17:01 +0100)]
gnu: r-rcpparmadillo: Update to 0.10.8.1.0.

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

2 years agognu: r-readr: Update to 2.1.2.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:34 +0000 (17:01 +0100)]
gnu: r-readr: Update to 2.1.2.

* gnu/packages/statistics.scm (r-readr): Update to 2.1.2.

2 years agognu: r-rlang: Update to 1.0.0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:34 +0000 (17:01 +0100)]
gnu: r-rlang: Update to 1.0.0.

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

2 years agognu: r-yaml: Update to 2.2.2.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:34 +0000 (17:01 +0100)]
gnu: r-yaml: Update to 2.2.2.

* gnu/packages/statistics.scm (r-yaml): Update to 2.2.2.

2 years agognu: r-permute: Update to 0.9-7.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:34 +0000 (17:01 +0100)]
gnu: r-permute: Update to 0.9-7.

* gnu/packages/statistics.scm (r-permute): Update to 0.9-7.
[native-inputs]: Add r-knitr.

2 years agognu: r-magrittr: Update to 2.0.2.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:34 +0000 (17:01 +0100)]
gnu: r-magrittr: Update to 2.0.2.

* gnu/packages/statistics.scm (r-magrittr): Update to 2.0.2.

2 years agognu: r-rpart: Update to 4.1.16.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:34 +0000 (17:01 +0100)]
gnu: r-rpart: Update to 4.1.16.

* gnu/packages/statistics.scm (r-rpart): Update to 4.1.16.

2 years agognu: r-mlr3learners: Update to 0.5.2.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:33 +0000 (17:01 +0100)]
gnu: r-mlr3learners: Update to 0.5.2.

* gnu/packages/cran.scm (r-mlr3learners): Update to 0.5.2.

2 years agognu: r-paradox: Update to 0.8.0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:33 +0000 (17:01 +0100)]
gnu: r-paradox: Update to 0.8.0.

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

2 years agognu: r-calculus: Update to 0.3.3.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:33 +0000 (17:01 +0100)]
gnu: r-calculus: Update to 0.3.3.

* gnu/packages/cran.scm (r-calculus): Update to 0.3.3.

2 years agognu: r-clusterr: Update to 1.2.6.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:33 +0000 (17:01 +0100)]
gnu: r-clusterr: Update to 1.2.6.

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

2 years agognu: r-hardhat: Update to 0.2.0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:33 +0000 (17:01 +0100)]
gnu: r-hardhat: Update to 0.2.0.

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

2 years agognu: r-latex2exp: Update to 0.9.0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:32 +0000 (17:01 +0100)]
gnu: r-latex2exp: Update to 0.9.0.

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

2 years agognu: r-actuar: Update to 3.2-1.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:32 +0000 (17:01 +0100)]
gnu: r-actuar: Update to 3.2-1.

* gnu/packages/cran.scm (r-actuar): Update to 3.2-1.

2 years agognu: r-terra: Update to 1.5-17.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:32 +0000 (17:01 +0100)]
gnu: r-terra: Update to 1.5-17.

* gnu/packages/cran.scm (r-terra): Update to 1.5-17.

2 years agognu: r-spdep: Update to 1.2-2.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:32 +0000 (17:01 +0100)]
gnu: r-spdep: Update to 1.2-2.

* gnu/packages/cran.scm (r-spdep): Update to 1.2-2.

2 years agognu: r-lavaan: Update to 0.6-10.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:32 +0000 (17:01 +0100)]
gnu: r-lavaan: Update to 0.6-10.

* gnu/packages/cran.scm (r-lavaan): Update to 0.6-10.

2 years agognu: r-tiff: Update to 0.1-11.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:31 +0000 (17:01 +0100)]
gnu: r-tiff: Update to 0.1-11.

* gnu/packages/cran.scm (r-tiff): Update to 0.1-11.

2 years agognu: r-admisc: Update to 0.23.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:31 +0000 (17:01 +0100)]
gnu: r-admisc: Update to 0.23.

* gnu/packages/cran.scm (r-admisc): Update to 0.23.

2 years agognu: r-effectsize: Update to 0.6.0.1.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:31 +0000 (17:01 +0100)]
gnu: r-effectsize: Update to 0.6.0.1.

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

2 years agognu: r-raster: Update to 3.5-15.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:31 +0000 (17:01 +0100)]
gnu: r-raster: Update to 3.5-15.

* gnu/packages/cran.scm (r-raster): Update to 3.5-15.

2 years agognu: r-precrec: Update to 0.12.8.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:30 +0000 (17:01 +0100)]
gnu: r-precrec: Update to 0.12.8.

* gnu/packages/cran.scm (r-precrec): Update to 0.12.8.

2 years agognu: r-reticulate: Update to 1.24.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:30 +0000 (17:01 +0100)]
gnu: r-reticulate: Update to 1.24.

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

2 years agognu: r-renv: Update to 0.15.2.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:30 +0000 (17:01 +0100)]
gnu: r-renv: Update to 0.15.2.

* gnu/packages/cran.scm (r-renv): Update to 0.15.2.

2 years agognu: r-rastervis: Update to 0.51.2.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:30 +0000 (17:01 +0100)]
gnu: r-rastervis: Update to 0.51.2.

* gnu/packages/cran.scm (r-rastervis): Update to 0.51.2.

2 years agognu: r-randomizr: Update to 0.22.0.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:30 +0000 (17:01 +0100)]
gnu: r-randomizr: Update to 0.22.0.

* gnu/packages/cran.scm (r-randomizr): Update to 0.22.0.

2 years agognu: r-pillar: Update to 1.6.5.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:29 +0000 (17:01 +0100)]
gnu: r-pillar: Update to 1.6.5.

* gnu/packages/cran.scm (r-pillar): Update to 1.6.5.
[propagated-inputs]: Add r-glue.

2 years agognu: r-broom: Update to 0.7.12.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:29 +0000 (17:01 +0100)]
gnu: r-broom: Update to 0.7.12.

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

2 years agognu: r-energy: Update to 1.7-9.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:29 +0000 (17:01 +0100)]
gnu: r-energy: Update to 1.7-9.

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

2 years agognu: r-rcppthread: Update to 2.0.1.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:29 +0000 (17:01 +0100)]
gnu: r-rcppthread: Update to 2.0.1.

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

2 years agognu: r-glue: Update to 1.6.1.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:28 +0000 (17:01 +0100)]
gnu: r-glue: Update to 1.6.1.

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

2 years agognu: r-datawizard: Update to 0.2.3.
Ricardo Wurmus [Tue, 1 Feb 2022 16:01:23 +0000 (17:01 +0100)]
gnu: r-datawizard: Update to 0.2.3.

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

2 years agognu: lagrange: Update to 1.10.3.
jgart via Guix-patches via [Tue, 1 Feb 2022 09:54:21 +0000 (04:54 -0500)]
gnu: lagrange: Update to 1.10.3.

* gnu/packages/web-browsers.scm (lagrange): Update to 1.10.3.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2 years agognu: git-annex: Update to 10.20220127.
Kyle Meyer [Fri, 28 Jan 2022 04:14:26 +0000 (23:14 -0500)]
gnu: git-annex: Update to 10.20220127.

* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20220127.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2 years agognu: python-ipython: Fix CVE detection.
Efraim Flashner [Tue, 1 Feb 2022 10:49:37 +0000 (12:49 +0200)]
gnu: python-ipython: Fix CVE detection.

* gnu/packages/python-xyz.scm (python-ipython)[properties]: New field.

2 years agognu: %final-inputs-riscv64: Add comment.
Efraim Flashner [Tue, 1 Feb 2022 10:33:28 +0000 (12:33 +0200)]
gnu: %final-inputs-riscv64: Add comment.

* gnu/packages/commencement.scm (%final-inputs-riscv64): Add comment
explaining why this variable needs to exist.

2 years agognu: libaio: Fix test suite on riscv64-linux.
Efraim Flashner [Fri, 20 Aug 2021 08:11:44 +0000 (11:11 +0300)]
gnu: libaio: Fix test suite on riscv64-linux.

* gnu/packages/linux.scm (libaio)[arguments]: Add phase to adjust test
code to properly handle riscv.

2 years agognu: openblas: Fix building on riscv64-linux.
Efraim Flashner [Wed, 4 Aug 2021 06:46:26 +0000 (09:46 +0300)]
gnu: openblas: Fix building on riscv64-linux.

* gnu/packages/maths.scm (openblas)[arguments]: Adjust make-flags on
riscv64-linux to target the correct architecture when building for
riscv64-linux.

2 years agodoc: Add a rule of thumb to guide enabling new committers.
Maxim Cournoyer [Thu, 6 Jan 2022 16:10:31 +0000 (11:10 -0500)]
doc: Add a rule of thumb to guide enabling new committers.

* doc/contributing.texi (Commit Access): Introduce a new rule of thumb to
determine if a contributor should be considered to become a committer.

2 years agognu: i3-wm: Add 'upstream-name' and 'release-monitoring-url'.
Ludovic Courtès [Mon, 31 Jan 2022 23:28:26 +0000 (00:28 +0100)]
gnu: i3-wm: Add 'upstream-name' and 'release-monitoring-url'.

* gnu/packages/wm.scm (i3-wm)[properties]: New field.

2 years agognu: i3-wm: Update to 4.20.1.
Yusuf Talha [Mon, 31 Jan 2022 23:12:55 +0000 (00:12 +0100)]
gnu: i3-wm: Update to 4.20.1.

* gnu/packages/wm.scm (i3-wm): Update to 4.20.1.
[build-system]: Change to MESON-BUILD-SYSTEM.
[arguments]: Remove #:configure-flags.

2 years agodoc: Document --profile option to "guix environment"
Konrad Hinsen [Fri, 28 Jan 2022 18:10:11 +0000 (19:10 +0100)]
doc: Document --profile option to "guix environment"

* doc/guix.texi (Invoking guix environment): New paragraph.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2 years agodoc: Document --profile option to "guix shell"
Konrad Hinsen [Fri, 28 Jan 2022 17:59:27 +0000 (18:59 +0100)]
doc: Document --profile option to "guix shell"

* doc/guix.texi (Invoking guix shell): New paragraph.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2 years agognu: Remove 'guile-3.0/libgc-7' variant.
Ludovic Courtès [Sun, 30 Jan 2022 22:12:42 +0000 (23:12 +0100)]
gnu: Remove 'guile-3.0/libgc-7' variant.

This variant had become unnecessary with
0aef94e7bcbd272720f14c5343f74da5201ef90a and related changes.

* gnu/packages/guile.scm (guile-3.0/libgc-7): Remove.

2 years agognu: Add Lokke.
Ludovic Courtès [Sun, 30 Jan 2022 22:11:06 +0000 (23:11 +0100)]
gnu: Add Lokke.

* gnu/packages/guile.scm (guile-3.0-for-lokke): New variable.
* gnu/packages/guile-xyz.scm (lokke): New variable.
* gnu/packages/patches/guile-3.0.7-psyntax-nil.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.

2 years agognu: linux-libre 4.4: Update to 4.4.301.
Leo Famulari [Mon, 31 Jan 2022 17:48:11 +0000 (12:48 -0500)]
gnu: linux-libre 4.4: Update to 4.4.301.

* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.301.
(linux-libre-4.4-pristine-source): Update hash.

2 years agognu: linux-libre 4.9: Update to 4.9.299.
Leo Famulari [Mon, 31 Jan 2022 17:47:46 +0000 (12:47 -0500)]
gnu: linux-libre 4.9: Update to 4.9.299.

* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.299.
(linux-libre-4.9-pristine-source): Update hash.

2 years agognu: linux-libre 4.14: Update to 4.14.264.
Leo Famulari [Mon, 31 Jan 2022 17:47:28 +0000 (12:47 -0500)]
gnu: linux-libre 4.14: Update to 4.14.264.

* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.264.
(linux-libre-4.14-pristine-source): Update hash.

2 years agognu: linux-libre 4.19: Update to 4.19.227.
Leo Famulari [Mon, 31 Jan 2022 17:47:08 +0000 (12:47 -0500)]
gnu: linux-libre 4.19: Update to 4.19.227.

* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.227.
(linux-libre-4.19-pristine-source): Update hash.

2 years agognu: linux-libre 5.4: Update to 5.4.175.
Leo Famulari [Mon, 31 Jan 2022 17:46:45 +0000 (12:46 -0500)]
gnu: linux-libre 5.4: Update to 5.4.175.

* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.175.
(linux-libre-5.4-pristine-source): Update hash.

2 years agognu: linux-libre 5.10: Update to 5.10.95.
Leo Famulari [Mon, 31 Jan 2022 17:46:18 +0000 (12:46 -0500)]
gnu: linux-libre 5.10: Update to 5.10.95.

* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.95.
(linux-libre-5.10-pristine-source, deblob-scripts-5.10): Update hashes.