Commit graph

91203 commits

Author SHA1 Message Date
Vinicius Monego 0848b5595c
gnu: python-pynndescent: Update to 0.5.5.
* gnu/packages/machine-learning.scm (python-pynndescent): Update to 0.5.5.
[arguments]<#:phases>: Override 'check phase.
[native-inputs]: Remove python-nose. Add python-pytest.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 21:29:58 +01:00
Vinicius Monego 8fdd984f9c
gnu: python-pytest-pycodestyle: Update to 2.2.0.
* gnu/packages/python-check.scm (python-pytest-pycodestyle): Update to 2.2.0.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 21:29:58 +01:00
Vinicius Monego 6aa5d54a1c
gnu: Add python-pytest-pydocstyle.
* gnu/packages/python-check.scm (python-pytest-pydocstyle): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 21:29:51 +01:00
Vinicius Monego 4835fefe62
gnu: python-qasync: Update to 0.22.0.
* gnu/packages/python-xyz.scm (python-qasync): Update to 0.22.0.
[arguments]<#:phases>: Don't return #t.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 21:25:40 +01:00
Vinicius Monego 40731e2d4e
gnu: python-anyqt: Update to 0.0.13.
* gnu/packages/python-xyz.scm (python-anyqt): Update to 0.0.13.
[arguments]<#:phases>: Don't return #t.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 21:25:09 +01:00
Nicolas Goaziou db068aaa14
gnu: emacs-geiser: Update to 0.21.1.
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.21.1.
2022-01-14 21:21:53 +01:00
Nicolas Goaziou f0bf4332aa
gnu: emacs-auctex: Update to 13.0.16.
* gnu/packages/emacs-xyz.scm (emacs-auctex): Update to 13.0.16.
2022-01-14 21:16:43 +01:00
Leo Famulari 873fda504c
gnu: Calibre: Fix a build failure with recent zeroconf.
Fixes <https://issues.guix.gnu.org/53247>.

* gnu/packages/patches/calibre-fix-zeroconf.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/ebook.scm (calibre)[source]: Use it.
2022-01-14 14:45:17 -05:00
Arun Isaac 3a555a93a9
gnu: crm114: Pass -fcommon to compiler.
* gnu/packages/mail.scm (crm114)[arguments]: Add -fcommon to CFLAGS.
2022-01-14 19:58:46 +05:30
Mathieu Othacehe 9d0d4b331d
system: locale: Use only the current glibc.
* gnu/system/locale.scm (%default-locale-libcs): Remove glibc-2.31.
2022-01-14 14:29:20 +01:00
Mathieu Othacehe e92723452d
installer: Install the locale before mounting the cow-store.
Fixes: <https://issues.guix.gnu.org/52831>.

Make sure to install the en_US.utf8 fallback locale if the selected locale is
not supported.

* gnu/installer/final.scm (install-locale): New procedure.
(install-system): Call it.
2022-01-14 14:29:19 +01:00
Mathieu Othacehe 0c9693d8b3
installer: Do not set the locale in run-command.
Installing the locale inside the container, once the cow-store is mounted,
causes the process to keep opened locale files that can later prevent the
cow-store umount.

* gnu/installer/utils.scm (run-command): Remove locale argument.
* gnu/installer/final.scm (install-system): Adapt it.
2022-01-14 14:29:15 +01:00
Mathieu Othacehe 7c923e6cf4
installer: Remove an unused procedure.
* gnu/installer/final.scm (kill-cow-users): Remove it.
2022-01-14 14:29:12 +01:00
Mathieu Othacehe ee897e5f51
installer: Check if ci.guix.gnu.org can be reached.
* gnu/installer.scm (installer-program): Add gnutls extension.
* gnu/installer/newt/network.scm (wait-service-online): Check if the CI server
can be reached.
2022-01-14 14:29:08 +01:00
Mathieu Othacehe c6910baf36
installer: Ignore small devices.
Filter the devices that are smaller than 2GiB in the device selection list.

* gnu/installer/parted.scm (%min-device-size): New variable.
(non-install-devices): Rename it ...
(eligible-devices): ... this way. Filter the install device as well as the
small devices.
* gnu/installer/newt/partition.scm (run-partitioning-page): Adapt it.
2022-01-14 14:29:08 +01:00
Nicolas Goaziou 5c5d9e5a32
gnu: telescope: Remove input labels.
* gnu/packages/web-browsers.scm (telescope)[native-inputs]: Remove input
labels.
2022-01-14 13:20:18 +01:00
cage 053ace770f
gnu: telescope: Update to 0.7.
* gnu/packages/web-browsers.scm (telescope): Update to 0.7.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 13:18:39 +01:00
Danny Milosavljevic 923dcc3597
gnu: iverilog: Update to 11.0.
* gnu/packages/fpga.scm (iverilog): Update to 11.0.
[arguments]: Add make-flags.
2022-01-14 12:59:33 +01:00
Mathieu Othacehe 0233583aa4
system: vm: Change the writable image name.
* gnu/system/vm.scm (system-qemu-image/shared-store-script): Change it.
2022-01-14 12:26:07 +01:00
Mathieu Othacehe 2d12ec724e
scripts: system: Rationalize persistency.
Make sure that the images are created with a non volatile root by default and
the vm are created with a volatile root by default. Break the --volatile
option into --volatile-image and --persistent-vm options.

* guix/scripts/system.scm (perform-action): Turn volatile? argument into
volatile-vm-root?.
(show-help): Introduce --volatile-image and --persistent-vm options instead of
--volatile.
(%default-options): Adapt it.
(%options): Handle those options.
(process-action): Honor them.
* doc/guix.texi (Invoking guix system): Adapt it accordingly.
2022-01-14 12:26:07 +01:00
jgart 3dbb7112d4
gnu: Add git-interactive-rebase-tool.
* gnu/packages/rust-apps.scm (git-interactive-rebase-tool): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 10:55:43 +01:00
jgart 4000e49892
gnu: Add rust-concat-idents-1.
* gnu/packages/crates-io.scm (rust-concat-idents-1): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 10:55:43 +01:00
jgart cbb48e9875
gnu: Add rust-xi-unicode-0.3.
* gnu/packages/crates-io.scm (rust-xi-unicode-0.3): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 10:55:38 +01:00
jgart c7c509c375
gnu: rust-syn-1: Update to 1.0.82.
* gnu/packages/crates-io.scm (rust-syn-1): Update to 1.0.82.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 10:55:07 +01:00
jgart 42a6e943e4
gnu: Add rust-rstest-0.6.
* gnu/packages/crates-io.scm (rust-rstest-0.6): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 10:54:08 +01:00
jgart 614ac9bb44
gnu: rust-proc-macro2-1: Update to 1.0.32.
* gnu/packages/crates-io.scm (rust-proc-macro2-1): Update to 1.0.32.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2022-01-14 10:53:15 +01:00
Efraim Flashner 22010dd48c
gnu: openssh: Add release-monitoring-url.
* gnu/packages/ssh.scm (openssh)[properties]: New field.
2022-01-14 11:41:24 +02:00
Efraim Flashner 15216a06fe
gnu: glibc-locales: Allow finding newer versions.
* gnu/packages/base.scm (glibc-locales)[properties]: New field.
2022-01-14 11:41:24 +02:00
Efraim Flashner 8a018533ba
gnu: aspell-dictionary: Try to find new releases.
* gnu/packages/aspell.scm (aspell-dictionary)[properties]: New field.
2022-01-14 11:41:24 +02:00
Efraim Flashner 29e697789f
gnu: newsboat: Update to 2.26.
* gnu/packages/syndication.scm (newsboat): Update to 2.26.
[cargo-inputs]: Remove rust-clap-2. Add rust-lexopt-0.2, rust-md5-0.7.
2022-01-14 11:41:24 +02:00
Efraim Flashner 7b48173f63
gnu: rust-xdg-2: Update to 2.4.0.
* gnu/packages/crates-io.scm (rust-xdg-2): Update to 2.4.0.
[cargo-inputs]: Add rust-dirs-3.
2022-01-14 11:41:23 +02:00
Efraim Flashner c1d82f4aac
gnu: Add rust-lexopt-0.2.
* gnu/packages/crates-io.scm (rust-lexopt-0.2): New variable.
2022-01-14 11:41:23 +02:00
Efraim Flashner 24dbd44bdc
gnu: rust-fastrand-1: Update to 1.6.0.
* gnu/packages/crates-io.scm (rust-fastrand-1): Update to 1.6.0.
2022-01-14 11:41:23 +02:00
Efraim Flashner ed1461fa18
gnu: parcimonie: Help find new releases.
* gnu/packages/gnupg.scm (parcimonie)[properties]: New field.
2022-01-14 11:41:22 +02:00
Efraim Flashner 19f41fb4de
gnu: parcimonie: Remove input labels.
* gnu/packages/gnupg.scm (parcimonie)[inputs]: Remove input labels.
[arguments]: Use search-input-file to find files.
2022-01-14 11:41:22 +02:00
Efraim Flashner be6716a218
gnu: parcimonie: Update to 0.12.0.
* gnu/packages/gnupg.scm (parcimonie): Update to 0.12.0.
[inputs]: Remove perl-data, perl-exporter-tiny, perl-getopt-long-descriptive,
perl-libintl-perl, perl-lwp-online, perl-module-build,
perl-module-pluggable, perl-moox-handlesvia, perl-net-dbus-glib,
perl-strictures-2, perl-test-most, perl-test-trap,
perl-unicode-linebreak, perl-xml-parser, and perl-xml-twig; add
perl-json and perl-pango.
[native-inputs]: Add perl-file-which, perl-gnupg-interface,
perl-list-moreutils, perl-lwp-online, perl-module-build,
perl-strictures-2, perl-test-most, perl-test-trap.
[arguments]: Remove trailing #t from phases. Adjust custom
'prepare-for-tests phase.
[home-page]: Update to new home-page.
2022-01-14 11:41:22 +02:00
Efraim Flashner dc64e7a1ac
gnu: aria2: Rewrite with gexps.
* gnu/packages/bittorrent.scm (aria2)[arguments]: Rewrite with gexps.
2022-01-14 11:41:22 +02:00
Efraim Flashner 161091f053
gnu: aria2: Update to 1.36.0.
* gnu/packages/bittorrent.scm (aria2): Update to 1.36.0.
2022-01-14 11:41:21 +02:00
Efraim Flashner 12bccb8e3b
gnu: aria2: Add release-monitoring-property.
* gnu/packages/bittorrent.scm (aria2)[properties]: New field.
2022-01-14 11:41:21 +02:00
Efraim Flashner b32f645c02
gnu: lagrange: Update to 1.9.5.
* gnu/packages/web-browsers.scm (lagrange): Update to 1.9.5.
[arguments]: Remove 'fix-build-error phase.
2022-01-14 11:41:21 +02:00
Efraim Flashner d4ea772d13
gnu: quassel: Remove input labels.
* gnu/packages/irc.scm (quassel)[inputs]: Remove input labels.
2022-01-14 11:41:21 +02:00
Efraim Flashner 6a45d50f3a
gnu: quassel: Enable tests.
* gnu/packages/irc.scm (quassel)[arguments]: Add configure-flag to
enable tests. Don't disable tests.
2022-01-14 11:41:20 +02:00
Efraim Flashner a9558ec5e8
gnu: quassel: Update to 0.14.0.
* gnu/packages/irc.scm (quassel): Update to 0.14.0.
[source]: Remove patch.
[inputs]: Add boost, perl, sonnet.
* gnu/packages/patches/quassel-qt-514-compat.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2022-01-14 11:41:20 +02:00
Efraim Flashner a0c8c8cd53
gnu: tig: Update to 2.5.5.
* gnu/packages/version-control.scm (tig): Update to 2.5.5.
2022-01-14 11:41:20 +02:00
Efraim Flashner 3684904e93
gnu: parallel: Update to 20211222.
* gnu/packages/parallel.scm (parallel): Update to 20211222.
2022-01-14 11:41:20 +02:00
Efraim Flashner 097e1b6f92
gnu: keepassxc: Add release-monitoring-property.
* gnu/packages/password-utils.scm (keepassxc)[properties]: New field.
2022-01-14 11:41:19 +02:00
Efraim Flashner a275ef3966
gnu: earlyoom: Only build with pandoc on certain systems.
* gnu/packages/linux.scm (earlyoom)[native-inputs]: Only use pandoc on
x86_64-linux and i686-linux.
2022-01-14 11:41:19 +02:00
Efraim Flashner 720baa1e0b
gnu: earlyoom: Rewrite with gexps.
* gnu/packages/linux.scm (earlyoom)[arguments]: Rewrite with gexps.
2022-01-14 11:41:19 +02:00
Efraim Flashner 130703f8c5
gnu: earlyoom: Move snippet to make-flag.
* gnu/packages/linux.scm (earlyoom)[source]: Remove snippet.
[arguments]: Add makeflag to not use go111modules.
2022-01-14 11:41:19 +02:00
Efraim Flashner 160d0d7923
gnu: earlyoom: Run more tests.
* gnu/packages/linux.scm (earlyoom)[native-inputs]: Add cppcheck.
2022-01-14 11:41:18 +02:00