summaryrefslogtreecommitdiff
path: root/gnu
AgeCommit message (Expand)Author
2022-12-10gnu: emacs-wisp-mode: Update to 1.0.8....* gnu/packages/emacs-xyz.scm (emacs-wisp-mode): Update to 1.0.8. Nicolas Goaziou
2022-12-10gnu: emacs-logview: Update to 0.16....* gnu/packages/emacs-xyz.scm (emacs-logview): Update to 0.16. Nicolas Goaziou
2022-12-10gnu: emacs-jarchive: Update to 0.9.0....* gnu/packages/emacs-xyz.scm (emacs-jarchive): Update to 0.9.0. Nicolas Goaziou
2022-12-10gnu: emacs-evil-nerd-commenter: Update to 3.6.0....* gnu/packages/emacs-xyz.scm (emacs-evil-nerd-commenter): Update to 3.6.0. Nicolas Goaziou
2022-12-10gnu: emacs-ement: Update to 0.5.1....* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.5.1. Nicolas Goaziou
2022-12-10gnu: emacs-company-math: Update to 1.5....* gnu/packages/emacs-xyz.scm (emacs-company-math): Update to 1.5. Nicolas Goaziou
2022-12-10gnu: emacs-company-emoji: Update to 2.7.0....* gnu/packages/emacs-xyz.scm (emacs-company-emoji): Update to 2.7.0. Nicolas Goaziou
2022-12-10gnu: Add emacs-acme-theme....* gnu/packages/emacs-xyz.scm (emacs-acme-theme): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> jgart
2022-12-10gnu: Add emacs-carp....* gnu/packages/emacs-xyz.scm (emacs-carp): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> jgart
2022-12-09gnu: linux-libre 4.9: Update to 4.9.335....* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.335. (linux-libre-4.9-pristine-source): Update hash. Leo Famulari
2022-12-09gnu: linux-libre 4.14: Update to 4.14.301....* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.301. (linux-libre-4.14-pristine-source): Update hash. Leo Famulari
2022-12-09gnu: linux-libre 4.19: Update to 4.19.268....* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.268. (linux-libre-4.19-pristine-source): Update hash. Leo Famulari
2022-12-09gnu: linux-libre 5.4: Update to 5.4.226....* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.226. (linux-libre-5.4-pristine-source): Update hash. Leo Famulari
2022-12-09gnu: linux-libre 5.10: Update to 5.10.158....* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.158. (linux-libre-5.10-pristine-source): Update hash. Leo Famulari
2022-12-09gnu: linux-libre 5.15: Update to 5.15.82....* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.82. (linux-libre-5.15-pristine-source): Update hash. Leo Famulari
2022-12-09gnu: linux-libre: Update to 6.0.12....* gnu/packages/linux.scm (linux-libre-6.0-version): Update to 6.0.12. (linux-libre-6.0-pristine-source): Update hash. Leo Famulari
2022-12-09installer: Print progress bars and such as soon as \r is read....Fixes <https://issues.guix.gnu.org/59922>. Previously progress bars and related things would be buffered by 'run-external-command-with-line-hooks' until \n is read. * gnu/installer/utils.scm (run-external-command-with-line-hooks): Use 'read-delimited' rather than 'get-line'. Pass 'concat as the last argument. (%display-line-hook): Remove. (run-command): Use 'display' instead of '%display-line-hook'. (%syslog-line-hook): Add "\n" when LINE doesn't end in \n. (%installer-log-line-hook): Do not add an extra newline. (installer-log-line): Add an extra newline. Ludovic Courtès
2022-12-09services: nscd: Use nscd from 'glibc-final' on native builds....This reduces the closure size of systems by removing one glibc copy--namely (@ (gnu packages base) glibc) in addition to (@ (gnu packages commencement) glibc-final). * gnu/services/base.scm (<nscd-configuration>)[glibc]: Change default value to use 'let-system' and 'canonical-package' as appropriate. Ludovic Courtès
2022-12-09system: Remove unused yggdrasil OS template....This file was added in fe1cd098d2b83737e96f19438612291f5a9316e4 but it's not referenced from anywhere, not even gnu/local.mk. Furthermore, we don't normally add full OS examples for the purposes of illustrating the use of a single service. * gnu/system/examples/yggdrasil.tmpl: Remove. Ludovic Courtès
2022-12-08services: base: Use 'match-record' instead of 'match'....* gnu/services/base.scm (agetty-shepherd-service) (mingetty-shepherd-service) (nscd.conf-file) (udev-shepherd-service) (udev-etc) (gpm-shepherd-service) (network-set-up/linux) (network-tear-down/linux) (static-networking-shepherd-service) (greetd-agreety-tty-session-command) (greetd-agreety-tty-xdg-session-command): Use 'match-record' instead of 'match'. (guix-accounts): Use <guix-configuration> accessors. (udev-service-type): Use <udev-configuration> accessors. Ludovic Courtès
2022-12-08home: services: Use 'match-record' instead of 'match'....* gnu/home/services/mcron.scm (home-mcron-shepherd-services): Use 'match-record' instead of 'match'. * gnu/home/services/shells.scm (home-bash-extensions): Likewise. * gnu/home/services/xdg.scm (serialize-xdg-desktop-entry): Likewise. Ludovic Courtès
2022-12-08records: 'match-record' checks fields at macro-expansion time....This allows 'match-record' to be more efficient (field offsets are computed at compilation time) and to report unknown fields at macro-expansion time. * guix/records.scm (map-fields): New macro. (define-record-type*)[rtd-identifier]: New procedure. Define TYPE as a macro and use a separate identifier for the RTD. (lookup-field, match-record-inner): New macros. (match-record): Rewrite in terms of 'match-error-inner'. * tests/records.scm ("match-record, simple") ("match-record, unknown field"): New tests. * gnu/services/cuirass.scm (cuirass-shepherd-service): Rename 'log-file' local variable to 'main-log-file'. * gnu/services/getmail.scm (serialize-getmail-configuration-file): Move after <getmail-configuration-file> definition. Ludovic Courtès
2022-12-06services: fail2ban: Start server in the foreground....Previously, we were passing '-b', thereby starting the server in the background. Consequently the 'start' method could complete before the server was ready to accept connections on its socket, leading to non-deterministic test failures. Reported by Mathieu Othacehe <othacehe@gnu.org>. * gnu/services/security.scm (fail2ban-shepherd-service): Change FAIL2BAN-ACTION to invoke 'fail2ban-client'. Change 'start' method to use 'make-forkexec-constructor'; start the server in the foreground with '-f' and pass '-x' to force execution of the server, as done upstream in 'fail2ban.service.in'. Ludovic Courtès
2022-12-06services: fail2ban: Remove unnecessary Shepherd 'modules' field....* gnu/services/security.scm (fail2ban-shepherd-service): Remove unnecessary 'modules' field. Ludovic Courtès
2022-12-06services: fail2ban: 'stop' returns #f when the dameon is stopped....* gnu/services/security.scm (fail2ban-shepherd-service): Change FAIL2BAN-ACTION to return an 'invoke' gexp. Adjust the shepherd 'start' and 'stop' fields accordingly. Have 'stop' return #f on success. Ludovic Courtès
2022-12-06gnu: texinfo, info-reader: Do not run tests when cross-compiling....Fixes a regression introduced in a3264f31df9774ea514e18ed8e7b6bcb44061edc. Reported by Mathieu Othacehe <othacehe@gnu.org>. * gnu/packages/texinfo.scm (texinfo)[arguments]: Change #:tests? to not run tests when cross-compiling. Ludovic Courtès
2022-12-06image: Clarify comment....* gnu/system/image.scm: Adjust comment. Ludovic Courtès
2022-12-06tests: docker-system: Increase image size....* gnu/tests/docker.scm (run-docker-system-test)[vm]: Increase 'disk-image-size'. Ludovic Courtès
2022-12-06system: vm: Non-volatile 'run-vm.sh' creates a CoW image....Previously, copying the image would consume a lot of space and was I/O-intensive, to the point that the marionette connection timeout of 20s could be reached when running tests like "docker-system". * gnu/system/vm.scm (common-qemu-options): Pass 'format=' for each '-drive' option. (system-qemu-image/shared-store-script)[copy-image]: New variable. [builder]: Use it when VOLATILE? is false. Ludovic Courtès
2022-12-06Revert "tests: install: Fix iso-image-installer test."...This reverts commit 0f66ef9aa99d2043abccbc80d858bdeca57534ac. e2fsprogs is now included in the installation operating system since 34f69bc6e6ea555929ecca83ee7592f5261ff5f2, making this workaround obsolete. Suggested-by: Ludovic Courtès <ludo@gnu.org> Maxim Cournoyer
2022-12-06install: Add missing e2fsprogs utility....* gnu/system/install.scm (%installer-disk-utilities): Add e2fsprogs. Reported-by: Adam Kandur <kefironpremise@gmail.com> Maxim Cournoyer
2022-12-06system: Rename and move %base-packages-disk-utilities....Rationale: It is only used in INSTALLATION-OS and doesn't make sense to be used in another context, given that file systems now automatically pull their dependencies since commit 45eac6cdf5c8d9d7b0c564b105c790d2d2007799 (services: Add file system utilities to profile). * gnu/system.scm (%base-packages-disk-utilities): Deprecate and rename to... * gnu/system/install.scm (%installer-disk-utilities): ... this. (installation-os) [packages]: Adjust accordingly. Maxim Cournoyer
2022-12-06system: Add e2fsprogs to %base-packages-utils....Rationale: Even when not using an ext file system, the utilities provided by e2fsprogs are useful, for example to set the copy-on-write attribute of a Btrfs file system. * gnu/system.scm (%base-packages-utils): Add e2fsprogs. Maxim Cournoyer
2022-12-05gnu: julia-documenter: Fix test suite regression....* gnu/packages/julia-xyz.scm (julia-documenter)[arguments]<#:phases>: Substitute a work around to fix the change of 'git submodule' default behaviour introduced by Git v2.38.1. Signed-off-by: Ludovic Courtès <ludo@gnu.org> zimoun
2022-12-05installer: Log provenance data....* gnu/installer.scm (provenance-sexp): New procedure. (installer-program)[installer-builder]: Add 'installer-log-line' call. Ludovic Courtès
2022-12-04services: configuration: Rename location accessor to "source-location"....Fixes <https://issues.guix.gnu.org/59423>. * gnu/services/configuration.scm (define-configuration-helper): Rename the accessor of the %location field from "NAME-location" to "NAME-source-location". Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Reported-by: Pierre Langlois <pierre.langlois@gmx.com> Maxim Cournoyer
2022-12-04gnu: xdg-desktop-portal-wlr: Install missing documentation....* gnu/packages/freedesktop.scm (xdg-desktop-portal-wlr)[arguments]: Add a new 'install-documentation phase. Tobias Geerinckx-Rice
2022-12-09Revert "gnu: make-linux-libre*: Remove input labels."...This reverts commit dfc6957a5af7d179d4618eb19d4f555c519bc6f2. git-bisect found it broke guix pull on non-x86_64 systems like powerpc64le, for reasons to investigate. Maxim Cournoyer
2022-12-09gnu: julia-optimtestproblems: Add missing dependencies....* gnu/packages/julia-xyz.scm (julia-optimtestproblems)[arguments]: Add missing base dependencies to julia-package-dependencies. Efraim Flashner
2022-12-09gnu: julia-statsbase: Update to 0.33.10....* gnu/packages/julia-xyz.scm (julia-statsbase): Update to 0.33.10. Efraim Flashner
2022-12-09gnu: julia-distances: Update to 0.10.7....* gnu/packages/julia-xyz.scm (julia-distances): Update to 0.10.7. [arguments]: Skip an additional test on 32-bit systems. Efraim Flashner
2022-12-09gnu: julia-bfloat16s: Update to 0.4.0....* gnu/packages/julia-xyz.scm (julia-bfloat16s): Update to 0.4.0. Efraim Flashner
2022-12-09gnu: guile-next: Update to a1a8558....* gnu/packages/guile.scm (guile-next): Update to a1a8558. Ludovic Courtès
2022-12-09gnu: Add htmlq....* gnu/packages/rust-apps.scm (htmlq): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan
2022-12-09gnu: Add rust-kuchiki-0.8....* gnu/packages/crates-io.scm (rust-kuchiki-0.8): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan
2022-12-09gnu: Add guile-jtd....* gnu/packages/guile-xyz.scm (guile-jtd): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> jgart
2022-12-09gnu: Add buku-run....* gnu/packages/web.scm (buku-run): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Hilton Chain
2022-12-09gnu: rawtherapee: Update to 5.9....* gnu/packages/photo.scm (rawtherapee): Update to 5.9. [arguments]: Use gexp. [inputs]: Remove labels. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Sharlatan Hellseher
2022-12-09system: images: Add networking support to pine64 image....* gnu/system/images/pine64.scm (pine64-barebones-os) [services]: Add dhcp-client-service-type and ntp-service-type to the list of services. [packages]: Add nss-certs to the list of packages. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Gabriel Wicki
2022-12-09services: wireguard: Use the parameterized wireguard package....* gnu/services/vpn.scm (wireguard-activation): Use the "wg" binary from the package given to <wireguard-configuration>. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> EuAndreh