summaryrefslogtreecommitdiff
path: root/gnu
Commit message (Collapse)AuthorAge
* gnu: hdparm: Update to 9.63.Tobias Geerinckx-Rice2022-01-11
| | | | * gnu/packages/linux.scm (hdparm): Update to 9.63.
* gnu: homebank: Update to 5.5.4.Tobias Geerinckx-Rice2022-01-11
| | | | * gnu/packages/finance.scm (homebank): Update to 5.5.4.
* gnu: dosbox-staging: Update to 0.78.1.Tobias Geerinckx-Rice2022-01-11
| | | | * gnu/packages/emulators.scm (dosbox-staging): Update to 0.78.1.
* gnu: mailutils: Use G-expressions.Tobias Geerinckx-Rice2022-01-11
| | | | | * gnu/packages/mail.scm (mailutils)[arguments]: Rewrite as G-expressions.
* gnu: mailutils: Update to 3.14.Tobias Geerinckx-Rice2022-01-11
| | | | * gnu/packages/mail.scm (mailutils): Update to 3.14.
* gnu: getmail: Unquote arguments.Tobias Geerinckx-Rice2022-01-11
| | | | * gnu/packages/mail.scm (getmail)[arguments]: Use LIST.
* gnu: getmail: Use HTTPS home page.Tobias Geerinckx-Rice2022-01-11
| | | | * gnu/packages/mail.scm (getmail)[source, home-page]: Use HTTPS.
* gnu: getmail: Update to 5.16.Tobias Geerinckx-Rice2022-01-11
| | | | * gnu/packages/mail.scm (getmail): Update to 5.16.
* gnu: icecat: Update to 91.5.0-guix0-preview1 [security fixes].Mark H Weaver2022-01-11
| | | | | | | | | | Includes fixes for CVE-2021-4140, CVE-2022-22737, CVE-2022-22738, CVE-2022-22739, CVE-2022-22740, CVE-2022-22741, CVE-2022-22742, CVE-2022-22743, CVE-2022-22745, CVE-2022-22747, CVE-2022-22748, and CVE-2022-22751. * gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update. (icecat-source): Update gnuzilla commit, base version, and hashes.
* gnu: nautilus: Adjust style.Pierre Langlois2022-01-11
| | | | * gnu/packages/gnome.scm (nautilus)[native-inputs, inputs]: Remove labels.
* gnu: nautilus: Update to 41.1.Pierre Langlois2022-01-11
| | | | | * gnu/packages/gnome.scm (nautilus): Update to 41.1. [arguments]: Remove #:meson keyword.
* gnu: nautilus: Fix build with libportal-0.5.Pierre Langlois2022-01-11
| | | | | | * gnu/packages/patches/nautilus-add-libportal-gtk3.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/gnome.scm (nautilus)[source]: Use it.
* gnu: uBlock Origin: Update to 1.40.6.Marius Bakke2022-01-11
| | | | | * gnu/packages/browser-extensions.scm (ublock-origin): Update to 1.40.6. [native-inputs]: Remove labels.
* gnu: emacs-dtrt-indent: Update to 1.6.Nicolas Goaziou2022-01-11
| | | | * gnu/packages/emacs-xyz.scm (emacs-dtrt-indent): Update to 1.6.
* gnu: Add swayhide.Nicolas Graves2022-01-11
| | | | | | * gnu/packages/rust-apps.scm (swayhide): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: Add rust-exitcode-1.Nicolas Graves2022-01-11
| | | | | | * gnu/packages/crates-io.scm (rust-exitcode-1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: Fix typo in kernel configs.Leo Famulari2022-01-11
| | | | | | | | | This option defaults to "N", so this fix does not change the effective kernel configuration. * gnu/packages/aux-files/linux-libre/5.15-i686.conf, nu/packages/aux-files/linux-libre/5.15-x86_64.conf: Replace "unset" with "not set".
* gnu: krita: Update to 5.0.2.Z5722022-01-11
| | | | | | * gnu/packages/kde.scm (krita): Update to 5.0.2. Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: ceres: Update to 2.0.0.Felix Gruber2022-01-11
| | | | | | | | | * gnu/packages/maths.scm (ceres): Update to 2.0.0. [inputs]: Use simplified format. (ceres-solver-benchmarks)[phases]: Add schur_eliminator_benchmark. Replace autodiff_cost_function_benchmark with new autodiff_benchmarks. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: poetry: Fix package inputs.Tanguy Le Carrour2022-01-11
| | | | | | | * gnu/packages/python-xyz.scm (poetry)[propagated-inputs]: Add python-crashtest and python-entrypoints. Remove python-clikit. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: python-msgpack-transitional: Fix broken tests.Tanguy Le Carrour2022-01-11
| | | | | | | * gnu/packages/python-xyz.scm (python-msgpack-transitional)[arguments]: Replace references to deprecated Python methods. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: python-os-testr: Add python-testrepository to inputs.Tanguy Le Carrour2022-01-11
| | | | | | | | This fixes a build failure in the 'sanity-check' phase. * gnu/packages/openstack.scm (python-os-testr)[native-inputs]: Add python-testrepository. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* shell: Cache profiles even when using package specs.Ludovic Courtès2022-01-11
| | | | | | | | | | | | | | | | | | | | | | | | This enables profile caching not just when '-m' or '-f' is used, but also when package specs are passed on the command line, as in: guix shell -D guix git It also changes profile cache keys to include the system type, which was previously ignored. * guix/scripts/shell.scm (options-with-caching)[single-file-for-caching]: Remove. Call 'profile-cached-gc-root' instead; adjust to accept two values. (profile-cache-primary-key): New procedure. (profile-cache-key): Remove. (profile-file-cache-key, profile-spec-cache-key): New procedures. (profile-cached-gc-root): Rewrite to include functionality formally in 'single-file-for-caching', but extend to handle package specs. * gnu/packages.scm (cache-is-authoritative?): Export. * guix/transformations.scm (transformation-option-key?): New procedure. * doc/guix.texi (Invoking guix shell): Move '--rebuild-cache' documentation to the bottom, just above '--root'. Explain caching and how these two options relate to that.
* gnu: varnish: Remove input labels.Marius Bakke2022-01-11
| | | | | * gnu/packages/web.scm (varnish)[arguments]: Don't look up inputs by key. [native-inputs]: Remove labels.
* gnu: speech-dispatcher: Update to 0.11.1.Marius Bakke2022-01-11
| | | | * gnu/packages/speech.scm (speech-dispatcher): Update to 0.11.1
* gnu: speech-dispatcher: Simplify inputs.Marius Bakke2022-01-11
| | | | | * gnu/packages/speech.scm (speech-dispatcher)[native-inputs, inputs]: Remove labels.
* gnu: QEMU: Update to 6.2.0.Marius Bakke2022-01-11
| | | | | | | * gnu/packages/patches/qemu-CVE-2021-20203.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/virtualization.scm (qemu): Update to 6.2.0. [source](patches): Remove obsolete patch.
* gnu: python-imagecodecs: Disable sanity check.Marius Bakke2022-01-11
| | | | | * gnu/packages/python-xyz.scm (python-imagecodecs)[arguments]: Disable sanity-check phase.
* gnu: python-pywavelets: Update to 1.2.0.Marius Bakke2022-01-11
| | | | * gnu/packages/python-xyz.scm (python-pywavelets): Update to 1.2.0.
* gnu: python-scikit-rebate: Update to 0.62.Marius Bakke2022-01-11
| | | | | | * gnu/packages/machine-learning.scm (python-scikit-rebate): Update to 0.62. [arguments]: Disable tests. [native-inputs]: Remove.
* gnu: python-apache-libcloud: Fix bytecode compilation.Marius Bakke2022-01-11
| | | | | | * gnu/packages/python-xyz.scm (python-apache-libcloud)[arguments]: Fix indentation of test code. While here, remove input label usage and trailing #t's.
* gnu: python-dictdiffer: Update to 0.9.0.Marius Bakke2022-01-11
| | | | * gnu/packages/python-xyz.scm (python-dictdiffer): Update to 0.9.0.
* gnu: python-dictdiffer: Disable tests.Marius Bakke2022-01-11
| | | | | * gnu/packages/python-xyz.scm (python-dictdiffer)[arguments]: New field. [native-inputs]: Remove test inputs.
* gnu: authenticator: Remove input labels.Marius Bakke2022-01-11
| | | | | | | * gnu/packages/gnome.scm (authenticator)[native-inputs]: Remove labels. [arguments]: While at it, remove top-level Python reference in favor of THIS-PACKAGE-INPUT. [inputs]: Add PYTHON.
* gnu: authenticator: Fix build.Marius Bakke2022-01-11
| | | | * gnu/packages/gnome.scm (authenticator)[arguments]: Add #:meson.
* gnu: mycli: Placate sanity check.Marius Bakke2022-01-11
| | | | * gnu/packages/databases.scm (mycli)[arguments]: Add phase.
* gnu: python-pyperclip: Update to 1.8.2.Marius Bakke2022-01-11
| | | | * gnu/packages/xdisorg.scm (python-pyperclip): Update to 1.8.2.
* gnu: pantalaimon: Disable sanity check.Marius Bakke2022-01-11
| | | | * gnu/packages/matrix.scm (pantalaimon)[arguments]: Disable sanity-check phase.
* gnu: python-oslo.i18n: Disable tests.Marius Bakke2022-01-11
| | | | | | * gnu/packages/openstack.scm (python-oslo.i18n)[arguments]: Add #:tests?. [native-inputs]: Remove PYTHON-MOCK, PYTHON-MOX3, PYTHON-OSLOTEST, and PYTHON-TESTSCENARIOS.
* gnu: poetry: Use python-msgpack.Marius Bakke2022-01-11
| | | | | * gnu/packages/python-xyz.scm (poetry)[propagated-inputs]: Change PYTHON-MSGPACK-TRANSITIONAL to PYTHON-MSGPACK.
* gnu: python-pifpaf: Update to 3.1.5.Marius Bakke2022-01-11
| | | | | * gnu/packages/python-xyz.scm (python-pifpaf): Update to 3.1.5. [propagated-inputs]: Remove PYTHON-SIX.
* gnu: python-os-testr: Update to 2.0.1.Marius Bakke2022-01-11
| | | | | * gnu/packages/openstack.scm (python-os-testr): Update to 2.0.1. [propagated-inputs]: Change from PYTHON-SUBUNIT to PYTHON-STESTR.
* gnu: python-cmd2: Update to 2.3.3.Marius Bakke2022-01-11
| | | | | | | | * gnu/packages/python-xyz.scm (python-cmd2): Update to 2.3.3. [arguments]: Override check phase. [native-inputs]: Remove PYTHON-CODECOV, PYTHON-COVERAGE, PYTHON-DOC8, PYTHON-FLAKE8, PYTHON-SPHINX, PYTHON-SPHINX-AUTOBUILD, PYTHON-SPHINX-RTD-THEME, PYTHON-TOX, PYTHON-TWINE, and WHICH.
* gnu: python-xattr: Update to 0.9.9.Marius Bakke2022-01-11
| | | | * gnu/packages/python-xyz.scm (python-xattr): Update to 0.9.9.
* gnu: node: Simplify inputs.Marius Bakke2022-01-11
| | | | | * gnu/packages/node.scm (node)[native-inputs]: Remove labels. [source]: Remove trailing #t.
* gnu: node: Disable flaky test.Marius Bakke2022-01-11
| | | | * gnu/packages/node.scm (node, node-lts)[arguments]: Delete flaky test.
* gnu: python-sqlparse: Specify CPE name.Marius Bakke2022-01-11
| | | | * gnu/packages/databases.scm (python-sqlparse)[properties]: New field.
* gnu: python-sqlparse: Update to 0.4.2 [fixes CVE-2021-32839].Marius Bakke2022-01-11
| | | | * gnu/packages/databases.scm (python-sqlparse): Update to 0.4.2.
* gnu: python-zeroconf: Update to 0.38.1.Vinicius Monego2022-01-11
| | | | | | | | | | * gnu/packages/python-xyz.scm (python-zeroconf): Update to 0.38.1. [source]: Fetch from GitHub. [native-inputs]: Remove python-nose. Add python-pytest. [arguments]<#:phases>: Adjust custom 'check phase to use Pytest. [description]: Don't break line. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: python-colorlog: Update to 6.6.0.Vinicius Monego2022-01-11
| | | | | | | | * gnu/packages/python-xyz.scm (python-colorlog): Update to 6.6.0. [source]: Make some cosmetic changes. [arguments]<#:phases>: Simplify custom 'check phase and respect #:tests?. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>