summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-08-21doc: Clarify 'user' field and key pairs in Daemon Offload.Bruno Victal
* doc/guix.texi (Daemon Offload Setup:): Clarify 'user' field of build-machine data type and the key pair used by guix archive. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-21gnu: googlebenchmark: Update to 1.8.2.Greg Hogan
* gnu/packages/check.scm (googlebenchmark): Update to 1.8.2. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-21ci: Honor user-specific systems for manifests.Ludovic Courtès
* gnu/ci.scm (manifests->jobs): Add 'systems' argument. [manifest-entry->job]: Add 'system' and honor it. Honor it. (cuirass-jobs): Pass SYSTEMS to 'manifests->jobs'.
2023-08-21tests: Adjust 'node-back-edges' test for 'bag' to system-dependent glibc.Ludovic Courtès
Fixes a regression introduced in 560cb51e7b37e2c6f6fe4b72a3781185c57fdf83, which would lead this test on x86_64-linux to return a DIFF with two packages, nhc98 and dev86 (both have #:system "i686-linux" and thus depend on a different glibc object; why other system-specific packages such as 'wine' aren't reported is unclear). * tests/graph.scm ("node-transitive-edges + node-back-edges"): Use 'test-equal'. Define 'system-specific?' and use it.
2023-08-21services: Add missing 'user-processes' requirements.Ludovic Courtès
* gnu/services/guix.scm (guix-build-coordinator-agent-shepherd-services): Add 'user-processes' requirement. * gnu/services/linux.scm (earlyoom-shepherd-service): Likewise.
2023-08-21gnu: cdogs-sdl: Update to 1.5.0.Ricardo Wurmus
* gnu/packages/games.scm (cdogs-sdl): Update to 1.5.0.
2023-08-21gnu: cdogs-sdl: Patch assets directory.Ricardo Wurmus
* gnu/packages/games.scm (cdogs-sdl)[arguments]: Add phase 'patch-install-directory to ensure data files are installed there.
2023-08-21gnu: cdogs-sdl: Use G-expression.Ricardo Wurmus
* gnu/packages/games.scm (cdogs-sdl)[arguments]: Use G-expression and refer to #$output.
2023-08-21maint: Add 'etc/hurd-manifest.scm'.Janneke Nieuwenhuizen
* build-aux/cuirass/hurd-manifest.scm: Move to... * etc/hurd-manifest.scm: ...here. * Makefile.am (EXTRA_DIST): Update accordingly.
2023-08-21gnu: texlivetexmf: Fix building on riscv64-linux.Efraim Flashner
* gnu/packages/texlive.scm (texlivetexmf)[arguments]: Adjust the custom 'texlive-texmf phase to skip targets dependant on luajit when building for riscv64-linux.
2023-08-21gnu: darktable: Enable building on riscv64-linux.Efraim Flashner
* gnu/packages/photo.scm (darktable)[supported-systems]: Add riscv64-linux.
2023-08-20doc: Fix module for "Essential Home Services".Nicolas Graves
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20gnu: lttng-ust: Update to 2.13.6.fanquake
* gnu/packages/instrumentation.scm (lttng-ust): Update to 2.13.6. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20gnu: Add r128gain.Parnikkapore
* gnu/packages/audio.scm (r128gain): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20gnu: Add python-ffmpeg-python.Parnikkapore
* gnu/packages/python-xyz.scm (python-ffmpeg-python): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20gnu: Add bfs.Tobias Kortkamp
* gnu/packages/admin.scm (bfs): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20home: services: ssh: Fix compilation warning with 'serialize-match-criteria'.Nicolas Graves
* gnu/home/services/ssh.scm (serialize-match-criteria): New procedure. (serialize-openssh-host): Use it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20home: services: Add Syncthing.Ludovic Courtès
* gnu/home/services/syncthing.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * gnu/services/syncthing.scm (<syncthing-configuration>)[home-service?]: New field. Adjust 'provision' and 'requirement' depending on 'home-service?', and likewise for #:user and #:group. Use 'filter' + 'negate' instead of 'remove'. * doc/guix.texi (Networking Services): Add note and cross-reference to "Networking Home Services". (Networking Home Services): New node.
2023-08-20home: services: Add dicod.Ludovic Courtès
* gnu/home/services/dict.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * gnu/services/dict.scm (<dicod-configuration>)[home-service?]: New field. (dicod-shepherd-service): Do not map /dev/log when 'home-service?' is true. Remove 'user-processes' requirement when 'home-service?' is true. (dicod-shepherd-service): Set #:user and #:group to #f when 'home-service?' is true. * doc/guix.texi (Miscellaneous Home Services): New node. (Miscellaneous Services): Add cross-reference.
2023-08-20home: services: mcron: Define as a mapping of the system service.Ludovic Courtès
* gnu/services/mcron.scm (list-of-gexps?): Remove. (<mcron-configuration>): Rewrite using 'define-record-type*'. [home-service?]: New field. [log-file]: Make thunked and changed default value. (mcron-shepherd-services): Honor 'home-service?' and remove use of 'maybe-value-set?'. (mcron-service-type): Inherit 'home-service?' from CONFIG. (generate-doc): Remove. * gnu/home/services/mcron.scm (list-of-gexp?) (<home-mcron-configuration>, job-files, shepherd-schedule-action) (home-mcron-shepherd-services, home-mcron-profile) (home-mcron-extend, generate-doc): Remove. (home-mcron-configuration): Turn into a macro. (home-mcron-service-type): Define in terms of 'system->home-service-type'. <top level>: Add service type mapping.
2023-08-20home: services: Support mapping of System services to Home services.Ludovic Courtès
* gnu/home/services.scm (service-type-mapping) (system->home-service-type): New procedures. (define-service-type-mapping, define-service-type-mappings): New macros. (%system/home-service-type-mapping): New variable. <top level>: Use 'define-service-type-mappings'. * gnu/home/services/shepherd.scm <top level>: Likewise.
2023-08-20services: Define 'for-home'.Ludovic Courtès
* gnu/services.scm (remove-service-extensions): New procedure. (for-home?): New syntax parameter. (for-home): New macro.
2023-08-20services: syncthing: Use 'match-record'.Ludovic Courtès
* gnu/services/syncthing.scm (syncthing-shepherd-service): Use 'match-record-lambda' instead of 'match-lambda'.
2023-08-20services: dicod: Pre-build the GCIDE index.Ludovic Courtès
* gnu/services/dict.scm (%dicod-gcide-index): New variable. (%dicod-database:gcide): Use it. (%dicod-activation): Remove. (dicod-shepherd-service): Remove reference to /var/run/dicod. (dicod-service-type): Remove ACTIVATION-SERVICE-TYPE extension.
2023-08-20services: dicod: Remove Shepherd < 0.9.0 compatibility layer.Ludovic Courtès
* gnu/services/dict.scm (dicod-shepherd-service): Use 'make-inetd-constructor' and 'make-inetd-destructor' unconditionally.
2023-08-20gnu: Add tree-sitter-meson.Zheng Junjie
* gnu/packages/tree-sitter.scm (tree-sitter-meson): New variable. Signed-off-by: Hilton Chain <hako@ultrarare.space>
2023-08-20gnu: Add tree-sitter-dockerfile.Hilton Chain
* gnu/packages/tree-sitter.scm (tree-sitter-dockerfile): New variable.
2023-08-20gnu: dbxfs: Fix package.Efraim Flashner
A typo prevented the program from running successfully. * gnu/packages/file-systems.scm (dbxfs)[snippet]: Adjust snippet to substitute valid python.
2023-08-19gnu: Add texlive-collection-bibtexextra.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-collection-bibtexextra): New variable.
2023-08-19gnu: Add texlive-biblatex-philosophy.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-biblatex-philosophy): New variable.
2023-08-19gnu: Add texlive-fontsize.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-fontsize): New variable.
2023-08-19gnu: Add texlive-mathalpha.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-mathalpha): New variable.
2023-08-19gnu: Add texlive-cochineal.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-cochineal): New variable.
2023-08-19gnu: Add texlive-ltxdockit.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-ltxdockit): New variable.
2023-08-19gnu: Add texlive-guitlogo.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-guitlogo): New variable.
2023-08-19gnu: Add texlive-zootaxa-bst.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-zootaxa-bst): New variable.
2023-08-19gnu: Add texlive-xcite.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-xcite): New variable.
2023-08-19gnu: Add texlive-windycity.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-windycity): New variable.
2023-08-19gnu: Add texlive-vak.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-vak): New variable.
2023-08-19gnu: Add texlive-usebib.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-usebib): New variable.
2023-08-19gnu: Add texlive-urlbst.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-urlbst): New variable.
2023-08-19gnu: Add texlive-uni-wtal-lin.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-uni-wtal-lin): New variable.
2023-08-19gnu: Add texlive-uni-wtal-ger.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-uni-wtal-ger): New variable.
2023-08-19gnu: Add texlive-turabian-formatting.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-turabian-formatting): New variable.
2023-08-19gnu: Add texlive-splitbib.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-splitbib): New variable.
2023-08-19gnu: Add texlive-sort-by-letters.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-sort-by-letters): New variable.
2023-08-19gnu: Add texlive-showtags.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-showtags): New variable.
2023-08-19gnu: Add texlive-rsc.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-rsc): New variable.
2023-08-19gnu: Add texlive-pnas2009.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-pnas2009): New variable.
2023-08-19gnu: Add texlive-plainyr.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-plainyr): New variable.