summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gnu: ghc-quickcheck-classes-base: Fix typo.Vagrant Cascadian2021-11-14
| | | | | * gnu/packages/emacs-xyz.scm (ghc-quickcheck-classes-base)[description]: Fix spelling of "library"
* gnu: emacs-org-contrib: Fix typo.Vagrant Cascadian2021-11-14
| | | | | * gnu/packages/emacs-xyz.scm (emacs-org-contrib)[description]: Fix spelling of "maintenance".
* gnu: rust-fallible-collections-0.4: Fix typo.Vagrant Cascadian2021-11-14
| | | | | * gnu/packages/crates-io.scm (rust-fallible-collections-0.4)[description]: Fix spelling of "which".
* gnu: r-msfeatures: Fix typo.Vagrant Cascadian2021-11-14
| | | | | * gnu/packages/bioconductor.scm (r-msfeatures)[description]: Fix spelling of "package".
* gnu: home: services: Fix typo.Vagrant Cascadian2021-11-14
| | | | | * gnu/home/services/xdg.scm (home-xdg-base-directories-service-type): Fix spelling of "convenient".
* gnu: home: services: Fix typo.Vagrant Cascadian2021-11-14
| | | | * gnu/home/services/utils.scm: Fix spelling of "anything".
* gnu: home: services: Fix typo.Vagrant Cascadian2021-11-14
| | | | | * gnu/home/services/shells.scm (home-shell-profile-configuration): Fix spelling of "available".
* home: services: Typo fix.Vagrant Cascadian2021-11-14
| | | | * gnu/home/services.scm: Fix spelling of "directory".
* gnu: python-uritemplate: Update to 4.1.1.Marius Bakke2021-11-15
| | | | | | * gnu/packages/python-web.scm (python-uritemplate): Update to 4.1.1. [license]: Add LICENSE:ASL2.0. (python2-uritemplate): Remove variable.
* gnu: Remove python2-google-api-client.Marius Bakke2021-11-15
| | | | | | Some of its dependencies no longer support Python 2. * gnu/packages/python-web.scm (python2-google-api-client): Remove variable.
* gnu: python-sqlalchemy: Update to 1.4.27.Marius Bakke2021-11-15
| | | | * gnu/packages/databases.scm (python-sqlalchemy): Update to 1.4.27.
* gnu: python-psycopg2: Update to 2.9.2.Marius Bakke2021-11-15
| | | | | * gnu/packages/databases.scm (python-psycopg2): Update to 2.9.2. (python2-psycopg2): Remove variable (no longer supported).
* gnu: python-pyasn1-modules: Update to 0.2.8.Marius Bakke2021-11-15
| | | | * gnu/packages/python-xyz.scm (python-pyasn1-modules): Update to 0.2.8.
* gnu: Remove python2-sqlalchemy-utils.Marius Bakke2021-11-15
| | | | | | Some of its dependencies no longer support Python 2, so drop it. * gnu/packages/databases.scm (python2-sqlalchemy-utils): Remove variable.
* environment: Fix ‘--check’ with exported PS1 variable.Thiago Jung Bauermann2021-11-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If your .bashrc (unnecessarily) exports PS1 and you’re in a non-login shell, Guix crashes: user@popigai:~$ guix shell --check coreutils guix shell: checking the environment variables visible from shell '/bin/bash'... Backtrace: 14 (primitive-load "/home/user/.config/guix/current/bin/g…") In guix/ui.scm: 2206:7 13 (run-guix . _) 2169:10 12 (run-guix-command _ . _) In ice-9/boot-9.scm: 1752:10 11 (with-exception-handler _ _ #:unwind? _ # _) 1752:10 10 (with-exception-handler _ _ #:unwind? _ # _) In guix/store.scm: 658:37 9 (thunk) 1320:8 8 (call-with-build-handler _ _) 1320:8 7 (call-with-build-handler #<procedure 7fe393b7c420 at g…> …) In guix/status.scm: 800:4 6 (call-with-status-report _ _) In guix/scripts/environment.scm: 951:12 5 (_) In guix/store.scm: 2119:24 4 (run-with-store #<store-connection 256.99 7fe39627e500> …) In guix/scripts/environment.scm: 521:35 3 (_ _) In unknown file: 2 (string=? ("PS1" . "${debian_chroot:+($debian_chroot)…") …) In ice-9/boot-9.scm: 1685:16 1 (raise-exception _ #:continuable? _) 1685:16 0 (raise-exception _ #:continuable? _) ice-9/boot-9.scm:1685:16: In procedure raise-exception: In procedure string=: Wrong type argument in position 1 (expecting string): ("PS1" . "${debian_chroot:+($debian_chroot)}\\[\\033[01;32m\\]\\u@\\h\\[\\033[00m\\]:\\[\\033[01;34m\\]\\w\\[\\033[00m\\]${EXTRA}\\$ ") user@popigai:~$ This is because the match pattern doesn’t expect `(vhash-assoc "PS1" actual)` to return a pair. * guix/scripts/environment.scm (validate-child-shell-environment): Change match pattern to expect a pair. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: alot: Disable hanging test.Tanguy Le Carrour2021-11-14
| | | | | | * gnu/packages/mail.scm (alot) [#:phases]: Disable hanging test. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* home-services: Demonadify 'on-first-login' handling.Ludovic Courtès2021-11-14
| | | | | | | * gnu/home/services.scm (compute-on-first-login-script): Use 'computed-file' instead of' gexp->script'. (on-first-login-script-entry): Expect a regular value rather than a monadic value and remove 'mlet'.
* doc: Add a note about elogind and XDG_RUNTIME_DIR for Guix Home.Andrew Tropin2021-11-14
| | | | | | | * doc/guix.texi (Declaring the Home Environment): Add a note about elogind and XDG_RUNTIME_DIR. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* home-services: on-first-login: Check if XDG_RUNTIME_DIR exists.Andrew Tropin2021-11-14
| | | | | | | | | | Fixes <https://issues.guix.gnu.org/50945>. Reported by Jan Nieuwenhuizen <janneke@gnu.org>. * gnu/home-services.scm (on-first-login): on-first-login won't execute anything if XDG_RUNTIME_DIR doesn't exists. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: u-boot, u-boot-am335x-boneblack, u-boot-novena: Fix lint warnings.Vagrant Cascadian2021-11-14
| | | | | | | * gnu/packages/bootloaders.scm (u-boot)[description]: Add second space after sentence. (u-boot-am335x-boneblack)[description]: Likewise. (u-boot-novena)[description]: Likewise.
* doc: Add example to dist target.Julien Lepiller2021-11-14
| | | | * doc/local.mk (OS_CONFIG_EXAMPLES_TEXI): Add he-config-bare-bones.scm.
* gnu: python-translate-toolkit: Update to 3.5.1.Julien Lepiller2021-11-14
| | | | | * gnu/packages/python-xyz (python-translate-toolkit): Update to 3.5.1. (python2-translate-toolkit): Keep at previous version.
* doc: Fix guix shell -C example.Florian Pelz2021-11-14
| | | | | | | The meaning changed by accident when guix environment was replaced by guix shell in 80edb7df6586464aa40e84e103f0045452de95db. * doc/guix.texi (Debugging Build Failures): Add missing -D option.
* gnu: guix-build-coordinator: Update to 0-36.87508af.Christopher Baines2021-11-14
| | | | | * gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-36.87508af.
* gnu: Add borgmatic.Arun Isaac2021-11-14
| | | | | | * gnu/packages/backup.scm (borgmatic): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: Add nsxiv.Foo Chuan Wei2021-11-14
| | | | | | * gnu/packages/image-viewers.scm (nsxiv): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: Add neatmail.jgart via Guix-patches via2021-11-14
| | | | | | * gnu/packages/mail.scm (neatmail): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: pinentry-tty: Update to 1.2.0.Efraim Flashner2021-11-14
| | | | * gnu/packages/gnupg.scm (pinentry-tty): Update to 1.2.0.
* gnu: terminology: Update to 1.11.0.Efraim Flashner2021-11-14
| | | | * gnu/packages/enlightenment.scm (terminology): Update to 1.11.0.
* gnu: linux-libre 4.9: Update to 4.9.292.Leo Famulari2021-11-13
| | | | | * gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.292. (linux-libre-4.9-pristine-source): Update hash.
* gnu: linux-libre 4.9: Update to 4.9.290.Leo Famulari2021-11-13
| | | | | * gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.290. (linux-libre-4.9-pristine-source): Update hash.
* gnu: linux-libre 4.14: Update to 4.14.255.Leo Famulari2021-11-13
| | | | | * gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.255. (linux-libre-4.14-pristine-source): Update hash.
* gnu: linux-libre 4.19: Update to 4.19.217.Leo Famulari2021-11-13
| | | | | * gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.217. (linux-libre-4.19-pristine-source): Update hash.
* gnu: linux-libre 5.4: Update to 5.4.159.Leo Famulari2021-11-13
| | | | | * gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.159. (linux-libre-5.4-pristine-source): Update hash.
* gnu: linux-libre 5.10: Update to 5.10.79.Leo Famulari2021-11-13
| | | | | * gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.79. (linux-libre-5.10-pristine-source): Update hash.
* gnu: linux-libre: Update to 5.14.18.Leo Famulari2021-11-13
| | | | | * gnu/packages/linux.scm (linux-libre-5.14-version): Update to 5.14.18. (linux-libre-5.14-pristine-source): Update hash.
* gnu: mu: Update to 1.6.10.Tobias Geerinckx-Rice2021-11-14
| | | | * gnu/packages/mail.scm (mu): Update to 1.6.10.
* gnu: renameutils: Fix license and tweak.Ludovic Courtès2021-11-14
| | | | | | * gnu/packages/shellutils.scm (renameutils)[source]: Use mirror:// URL. [license]: Change to GPL3+. [description]: Use @command markup.
* gnu: Add renameutils.Wiktor Żelazny2021-11-14
| | | | | | * gnu/packages/shellutils.scm (renameutils): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add purple-lurch.James Thomas2021-11-14
| | | | | | * gnu/packages/messaging.scm (purple-lurch): New variable Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add libomemo.James Thomas2021-11-14
| | | | | | * gnu/packages/messaging.scm (libomemo): New variable Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add axc.James Thomas2021-11-14
| | | | | | * gnu/packages/messaging.scm (axc): New variable Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: bear: Update to 3.0.16.Greg Hogan2021-11-14
| | | | | | | * gnu/packages/build-tools.scm (bear): Update to 3.0.16. * gnu/packages/patches/bear-disable-preinstall-tests.patch: Update. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: fmt: Update to 8.0.1.Greg Hogan2021-11-14
| | | | | | | | | | * gnu/packages/pretty-print.scm (fmt): Update to 8.0.1, (fmt-7): New variable. * gnu/packages/astronomy.scm (celestia)[inputs], gnu/packages/kodi.scm (kodi)[inputs], gnu/packages/lua.scm (emilua)[inputs]: Change to fmt-7. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: waybar: Update to 0.9.8.Greg Hogan2021-11-14
| | | | | | | * gnu/packages/wm.scm (waybar): Update to 0.9.8. [inputs]: Add libxml2. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: spdlog: Update to 1.9.2.Greg Hogan2021-11-14
| | | | | | * gnu/packages/logging.scm (spdlog): Update to 1.9.2. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* tests: Adjust tests/egg.scm to latest API changes.Ludovic Courtès2021-11-14
| | | | | | | This is a followup to b999c80c2e71bd4b3f26a18a321b7e7e7b580103. * tests/egg.scm (eval-test-with-egg-file): Pass 'version' argument to 'egg->guix-package'.
* gnu: duplicity: Update to 0.8.21.Tobias Geerinckx-Rice2021-11-13
| | | | | * gnu/packages/backup.scm (duplicity): Update to 0.8.21. [arguments]: Don't explicitly return #t from phases.
* guix: packages: Clarify that list is a list of <license> records.jgart2021-11-13
| | | | | | | * guix/packages/packages.scm (<package>): Clarify that the license field takes a list of licenses rather than a generic list. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
* gnu: Add Breezy.Eric Bavier2021-11-13
| | | | * gnu/packages/version-control.scm (breezy): New variable.