summaryrefslogtreecommitdiff
path: root/gnu
AgeCommit message (Expand)Author
2021-12-23gnu: libite: Edit synopsis and description....* gnu/packages/linux.scm (libite)[synopsis]: Improve it. [description]: Ditto. Mathieu Othacehe
2021-12-23gnu: watchdogd: Add a missing dot....* gnu/packages/linux.scm (watchdogd)[description]: Add a missing dot. Mathieu Othacehe
2021-12-23gnu: linux-libre 4.4: Update to 4.4.296....* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.296. (linux-libre-4.4-pristine-source): Update hash. Leo Famulari
2021-12-23gnu: linux-libre 4.9: Update to 4.9.294....* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.294. (linux-libre-4.9-pristine-source): Update hash. Leo Famulari
2021-12-23gnu: linux-libre 4.14: Update to 4.14.259....* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.259. (linux-libre-4.14-pristine-source): Update hash. Leo Famulari
2021-12-23gnu: linux-libre 4.19: Update to 4.19.222....* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.222. (linux-libre-4.19-pristine-source): Update hash. Leo Famulari
2021-12-23gnu: linux-libre 5.4: Update to 5.4.168....* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.168. (linux-libre-5.4-pristine-source): Update hash. Leo Famulari
2021-12-23gnu: linux-libre 5.10: Update to 5.10.88....* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.88. (linux-libre-5.10-pristine-source): Update hash. Leo Famulari
2021-12-23gnu: linux-libre: Update to 5.15.11....* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.11. (linux-libre-5.15-pristine-source): Update hash. Leo Famulari
2021-12-23gnu: Add watchdogd....* gnu/packages/linux.scm (watchdogd): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Petr Hodina
2021-12-23gnu: Add libuev....* gnu/packages/linux.scm (libuev): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Petr Hodina
2021-12-23gnu: Add libite....* gnu/packages/linux.scm (libite): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Petr Hodina
2021-12-23gnu: Remove unused module import from (gnu packages linux)....This caused an ambiguous import warning: ------ WARNING: (gnu packages linux): `build' imported from both (gnu packages build-tools) and (guix store) ------ This is a followup to commit 6961c8368c66feef1fe5e7f4d425b857c1051948. * gnu/packages/linux.scm: Do not import (gnu packages build-tools). Leo Famulari
2021-12-23gnu: Add qelectrotech....* gnu/packages/engineering.scm (qelectrotech): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Vinicius Monego
2021-12-23gnu: guix: Update to 1.3.0-17.2a49ddb....Also add a note about updating the guix package when it fails to build. * gnu/packages/package-management.scm (guix): Update to 1.3.0-17.2a49ddb. Mathieu Othacehe
2021-12-23tests: rsync: Fix it....* gnu/tests/rsync.scm ("Test file not copied to read-only share"): This returns the error code 1 and not 10. Mathieu Othacehe
2021-12-23gnu: cl-ana: Update to 0.0.0-2.848185e....* gnu/packages/lisp-xyz.scm (sbcl-cl-ana): Update to 0.0.0-2.848185e. [inputs]: Use new style. [native-inputs]: Add openmpi and pkg-config. [propagated-inputs]: Add gnuplot. [arguments]: Update 'fix-paths' phase. Co-authored-by: Guillaume Le Vaillant <glv@posteo.net> Sharlatan Hellseher
2021-12-23tests: reconfigure: Fix it....* gnu/tests/reconfigure.scm (run-install-bootloader-test): Use a non volatile VM so that a bootloader configuration file is installed. Mathieu Othacehe
2021-12-23tests: nfs: Fix nfs-root-fs test....This test has probably never been working. Rename it nfs-full, and test that an NFS server can be started in a VM and mounted in another VM. * gnu/tests/nfs.scm (run-nfs-root-fs-test): Rename it ... (run-nfs-full-test): ... this way. (%test-nfs-root-fs): Rename it ... (%test-nfs-full): ... this way. Mathieu Othacehe
2021-12-23services: nfs: Fix statd and mountd ports....* gnu/services/nfs.scm (nfs-shepherd-services): Fix rpcstatd-port and rpcmountd-port arguments. Mathieu Othacehe
2021-12-23tests: docker: Fix it....The docker tests are broken because the docker overlay doesn't support running on our own storage overlay. Use the new <virtual-machine> volatile? field to spawn a VM with a persistent storage and no overlay. * gnu/tests/docker.scm (run-docker-test): Add the docker-tarball to the gc roots as the host store is not shared anymore. Spawn a VM without volatile storage. (run-docker-system-test): Ditto. (%test-docker-system): Adapt it to use the image API. Mathieu Othacehe
2021-12-23Remove VM generation dead-code....This code duplicates the (gnu system image) and (gnu build image) code. Using VM for image generation is not needed, not portable and really slow. Remove all the VM image generation code to make sure that only the image API is used. * gnu/build/vm.scm: Remove it. Move the qemu-command procedure to ... * gnu/build/marionette.scm: ... here. * gnu/local.mk (GNU_SYSTEM_MODULES): Adapt it. * tests/modules.scm: Ditto. * gnu/tests/install.scm: Ditto. * gnu/system/vm.scm: Adapt it and remove expression->derivation-in-linux-vm, qemu-img, system-qemu-image/shared-store and system-docker-image procedures. * doc/guix.texi (G-Expressions): Adapt it. Mathieu Othacehe
2021-12-23system: vm: Use the image API to generate QEMU images....Also add a volatile? argument to the virtual-machine record. When volatile? is true generate a QEMU script that mounts an overlay on top of a read only storage. When volatile? is false, use a persistent, read-write storage. * gnu/system/vm.scm (common-qemu-options): Add a rw-image? argument to use a persistent storage. (system-qemu-image/shared-store-script): Add a volatile? argument and honor it. Use the image API to build the QEMU image. (<virtual-machine>)[volatile?]: New field. (virtual-machine-compiler): Pass the volatile? argument to the system-qemu-image/shared-store-script procedure. Mathieu Othacehe
2021-12-23system: image: Add docker support....* gnu/system/image.scm (docker-image, docker-image-type): New variables. (system-docker-image): New procedure. (image->root-file-system): Add docker image support. (system-image): Ditto. Mathieu Othacehe
2021-12-23image: Add a shared-network? field....* gnu/image.scm (<image>)[shared-network?]: New field. Mathieu Othacehe
2021-12-23image: Add a shared-store? field....* gnu/image.scm (<image>)[shared-store?]: New field. Mathieu Othacehe
2021-12-23build: image: Add optional closure copy support....* gnu/build/image.scm (initialize-root-partition): Add a closure-copy? argument and honor it. Mathieu Othacehe
2021-12-22gnu: pre-commit: Update to 2.16.0....* gnu/packages/version-control.scm (pre-commit): Update to 2.16.0. Signed-off-by: Leo Famulari <leo@famulari.name> Vinicius Monego
2021-12-22gnu: gsequencer: Update to 3.14.5....* gnu/packages/music.scm (gsequencer): Update to 3.14.5. [source]<origin>: Update url. Signed-off-by: Leo Famulari <leo@famulari.name> Vinicius Monego
2021-12-22gnu: gsequencer: Build with libsoup 2....* gnu/packages/music.scm (gsequencer)[native-inputs]: Use the new style. [inputs]: Replace libsoup with libsoup-minimal-2 and webkitgtk with webkitgtk-with-libsoup2. Use the new style. Signed-off-by: Leo Famulari <leo@famulari.name> Vinicius Monego
2021-12-22gnu: gnome-commander: Update to 1.12.3.1....* gnu/packages/gnome.scm (gnome-commander): Update to 1.12.3.1. Signed-off-by: Leo Famulari <leo@famulari.name> Vinicius Monego
2021-12-22gnu: openexr: Update to 3.1.3....* gnu/packages/graphics.scm (openexr): Update to 3.1.3. Signed-off-by: Leo Famulari <leo@famulari.name> Vinicius Monego
2021-12-23gnu: libksba: Fix cross-compilation....* gnu/packages/gnupg.scm (libksba)[native-inputs]: Remove. Marius Bakke
2021-12-23gnu: qemu-minimal: Actually remove unnecessary native-inputs....This is a follow-up to commit d64bd1254a015dfc999431dc65b6c5f210e8e334. * gnu/packages/virtualization.scm (qemu-minimal)[native-inputs]: Filter static outputs and remove "gettext-minimal" instead of "gettext". Marius Bakke
2021-12-23gnu: seabios: Build vgabios targets....* gnu/packages/firmware.scm (seabios)[arguments]: Add new phase to build various vgabiosen. While at it, create a "bios-256k.bin" as expected by QEMU. Marius Bakke
2021-12-23gnu: seabios: Encode version information in the binary.......to make the build deterministic. * gnu/packages/firmware.scm (seabios)[arguments]: Create a ".version" file as expected by the build system. While at it, set EXTRAVERSION as recommended by upstream. Marius Bakke
2021-12-23gnu: seabios: Update to 1.15.0....* gnu/packages/firmware.scm (seabios): Update to 1.15.0. [arguments]: Remove trailing #t's. [native-inputs]: Remove label. Marius Bakke
2021-12-23gnu: gcl: Avoid referencing GCC from the top-level....* gnu/packages/lisp.scm (gcl)[arguments]: Use SEARCH-INPUT-FILE instead of referencing the GCC variable. Marius Bakke
2021-12-23gnu: rsync: Remove 3.1.3....* gnu/packages/rsync.scm (rsync-next): Remove variable. (rsync): Update to 3.2.3. While at it, remove input labels. Marius Bakke
2021-12-23chromium-extension: Avoid another usage of the store-mapped /tmp....* gnu/build/chromium-extension.scm (make-crx): Use a Chromium profile relative to the build directory instead of /tmp. While here, remove obsolete comment. Marius Bakke
2021-12-23gnu: emacs-eldev: Adjust to changes in emacs-build-system....* gnu/packages/emacs-xyz.scm (emacs-eldev)[install-eldev-executable]: Use elpa-directory for ELDEV_LOCAL. Jelle Licht
2021-12-22gnu: xorg-server: Update to 21.1.2 [security fixes]....Fixes CVE-2021-4008, CVE-2021-4009, CVE-2021-4010, and CVE-2021-4011. * gnu/packages/xorg.scm (xorg-server): Update to 21.1.2. (xorg-server-for-tests): Use version 21.1.1. Leo Famulari
2021-12-22services: dbus: Wait 1 minute for elogind to get ready....Fixes <https://issues.guix.gnu.org/issue/52051>. * gnu/services/dbus.scm (dbus-configuration-directory): Set a 60 second authentication timeout in the D-Bus configuration. Timothy Sample
2021-12-22gnu: emacs-evil-collection: Update to 0.0.7....* gnu/packages/emacs-xyz.scm (emacs-evil-collection): Update to 0.0.7. Nicolas Goaziou
2021-12-22gnu: emacs-cider: Update to 1.2.0....* gnu/packages/emacs-xyz.scm (emacs-cider): Update to 1.2.0. Nicolas Goaziou
2021-12-22gnu: emacs-geiser-guile: Update to 0.20.1....* gnu/packages/emacs-xyz.scm (emacs-geiser-guile): Update to 0.20.1. Nicolas Goaziou
2021-12-22gnu: emacs-geiser: Update to 0.21....* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.21. Nicolas Goaziou
2021-12-22gnu: Add sugar-light-sddm-theme....* gnu/packages/display-manager.scm (sugar-light-sddm-theme): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Petr Hodina
2021-12-22gnu: Add sugar-dark-sddm-theme....* gnu/packages/display-manager.scm (sugar-dark-sddm-theme): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Petr Hodina
2021-12-22gnu: Add xblackjack....* gnu/packages/games.scm (xblackjack): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Foo Chuan Wei