Commit Graph

121788 Commits

Author SHA1 Message Date
Ludovic Courtès df2117b8e0
tests: Adjust 'node-back-edges' test for 'bag' to system-dependent glibc.
Fixes a regression introduced in
560cb51e7b, 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-21 16:16:47 +02:00
Ludovic Courtès 9c34b793c1
services: Add missing 'user-processes' requirements.
* gnu/services/guix.scm (guix-build-coordinator-agent-shepherd-services):
Add 'user-processes' requirement.
* gnu/services/linux.scm (earlyoom-shepherd-service): Likewise.
2023-08-21 16:16:47 +02:00
Ricardo Wurmus 182e8ddfc1
gnu: cdogs-sdl: Update to 1.5.0.
* gnu/packages/games.scm (cdogs-sdl): Update to 1.5.0.
2023-08-21 12:16:45 +02:00
Ricardo Wurmus ae4da4c81f
gnu: cdogs-sdl: Patch assets directory.
* gnu/packages/games.scm (cdogs-sdl)[arguments]: Add phase
'patch-install-directory to ensure data files are installed there.
2023-08-21 12:16:45 +02:00
Ricardo Wurmus b797e6906b
gnu: cdogs-sdl: Use G-expression.
* gnu/packages/games.scm (cdogs-sdl)[arguments]: Use G-expression and refer
to #$output.
2023-08-21 12:16:45 +02:00
Janneke Nieuwenhuizen 3c6b6941a2
maint: Add 'etc/hurd-manifest.scm'.
* build-aux/cuirass/hurd-manifest.scm: Move to...
* etc/hurd-manifest.scm: ...here.
* Makefile.am (EXTRA_DIST): Update accordingly.
2023-08-21 10:45:45 +02:00
Efraim Flashner 7cad705663
gnu: texlivetexmf: Fix building on riscv64-linux.
* 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-21 03:21:35 +03:00
Efraim Flashner 32de7edf02
gnu: darktable: Enable building on riscv64-linux.
* gnu/packages/photo.scm (darktable)[supported-systems]: Add
riscv64-linux.
2023-08-21 03:21:35 +03:00
Nicolas Graves a0f5885fef
doc: Fix module for "Essential Home Services".
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20 23:13:09 +02:00
fanquake f313a5116f
gnu: lttng-ust: Update to 2.13.6.
* gnu/packages/instrumentation.scm (lttng-ust): Update to 2.13.6.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20 23:11:21 +02:00
Parnikkapore 54ca9ce01f
gnu: Add r128gain.
* gnu/packages/audio.scm (r128gain): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20 23:10:17 +02:00
Parnikkapore a3131e7706
gnu: Add python-ffmpeg-python.
* gnu/packages/python-xyz.scm (python-ffmpeg-python): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20 23:10:14 +02:00
Tobias Kortkamp 30487d72cb
gnu: Add bfs.
* gnu/packages/admin.scm (bfs): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-08-20 23:03:15 +02:00
Nicolas Graves 613e913836
home: services: ssh: Fix compilation warning with 'serialize-match-criteria'.
* 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-20 22:59:09 +02:00
Ludovic Courtès 7605c01fcc
home: services: Add Syncthing.
* 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-20 22:48:48 +02:00
Ludovic Courtès 1ce3424e22
home: services: Add dicod.
* 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-20 22:48:47 +02:00
Ludovic Courtès 1c30d5a6bf
home: services: mcron: Define as a mapping of the system service.
* 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-20 22:48:47 +02:00
Ludovic Courtès 161d010d40
home: services: Support mapping of System services to Home services.
* 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-20 22:48:47 +02:00
Ludovic Courtès dff7d2468f
services: Define 'for-home'.
* gnu/services.scm (remove-service-extensions): New procedure.
(for-home?): New syntax parameter.
(for-home): New macro.
2023-08-20 22:48:47 +02:00
Ludovic Courtès c6c8106c65
services: syncthing: Use 'match-record'.
* gnu/services/syncthing.scm (syncthing-shepherd-service): Use
'match-record-lambda' instead of 'match-lambda'.
2023-08-20 22:48:39 +02:00
Ludovic Courtès 9bfe7fbdbe
services: dicod: Pre-build the GCIDE index.
* 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-20 22:47:26 +02:00
Ludovic Courtès 171ab374f9
services: dicod: Remove Shepherd < 0.9.0 compatibility layer.
* gnu/services/dict.scm (dicod-shepherd-service): Use
'make-inetd-constructor' and 'make-inetd-destructor' unconditionally.
2023-08-20 22:47:25 +02:00
Zheng Junjie 78748c619a
gnu: Add tree-sitter-meson.
* gnu/packages/tree-sitter.scm (tree-sitter-meson): New variable.

Signed-off-by: Hilton Chain <hako@ultrarare.space>
2023-08-20 22:11:44 +08:00
Hilton Chain ab79405989
gnu: Add tree-sitter-dockerfile.
* gnu/packages/tree-sitter.scm (tree-sitter-dockerfile): New variable.
2023-08-20 22:03:38 +08:00
Efraim Flashner 95a1a819df
gnu: dbxfs: Fix package.
A typo prevented the program from running successfully.

* gnu/packages/file-systems.scm (dbxfs)[snippet]: Adjust snippet to
substitute valid python.
2023-08-20 15:31:25 +03:00
Nicolas Goaziou ad5e4fe54a
gnu: Add texlive-collection-bibtexextra.
* gnu/packages/tex.scm (texlive-collection-bibtexextra): New variable.
2023-08-19 20:33:52 +02:00
Nicolas Goaziou 3e5b21261a
gnu: Add texlive-biblatex-philosophy.
* gnu/packages/tex.scm (texlive-biblatex-philosophy): New variable.
2023-08-19 20:33:52 +02:00
Nicolas Goaziou e4681734f3
gnu: Add texlive-fontsize.
* gnu/packages/tex.scm (texlive-fontsize): New variable.
2023-08-19 20:33:52 +02:00
Nicolas Goaziou f8c6ab42ef
gnu: Add texlive-mathalpha.
* gnu/packages/tex.scm (texlive-mathalpha): New variable.
2023-08-19 20:33:51 +02:00
Nicolas Goaziou 18b844e42a
gnu: Add texlive-cochineal.
* gnu/packages/tex.scm (texlive-cochineal): New variable.
2023-08-19 20:33:51 +02:00
Nicolas Goaziou d185112962
gnu: Add texlive-ltxdockit.
* gnu/packages/tex.scm (texlive-ltxdockit): New variable.
2023-08-19 20:33:51 +02:00
Nicolas Goaziou 2a7d0c9b53
gnu: Add texlive-guitlogo.
* gnu/packages/tex.scm (texlive-guitlogo): New variable.
2023-08-19 20:33:51 +02:00
Nicolas Goaziou 7e108882cd
gnu: Add texlive-zootaxa-bst.
* gnu/packages/tex.scm (texlive-zootaxa-bst): New variable.
2023-08-19 20:33:50 +02:00
Nicolas Goaziou e649aa6ac4
gnu: Add texlive-xcite.
* gnu/packages/tex.scm (texlive-xcite): New variable.
2023-08-19 20:33:50 +02:00
Nicolas Goaziou 889ba05ae9
gnu: Add texlive-windycity.
* gnu/packages/tex.scm (texlive-windycity): New variable.
2023-08-19 20:33:50 +02:00
Nicolas Goaziou 2de78786cc
gnu: Add texlive-vak.
* gnu/packages/tex.scm (texlive-vak): New variable.
2023-08-19 20:33:50 +02:00
Nicolas Goaziou 3c3175d1b6
gnu: Add texlive-usebib.
* gnu/packages/tex.scm (texlive-usebib): New variable.
2023-08-19 20:33:49 +02:00
Nicolas Goaziou 5c852f28dc
gnu: Add texlive-urlbst.
* gnu/packages/tex.scm (texlive-urlbst): New variable.
2023-08-19 20:33:49 +02:00
Nicolas Goaziou 405d91bc0f
gnu: Add texlive-uni-wtal-lin.
* gnu/packages/tex.scm (texlive-uni-wtal-lin): New variable.
2023-08-19 20:33:49 +02:00
Nicolas Goaziou fcf8f27853
gnu: Add texlive-uni-wtal-ger.
* gnu/packages/tex.scm (texlive-uni-wtal-ger): New variable.
2023-08-19 20:33:49 +02:00
Nicolas Goaziou 98fe046b9a
gnu: Add texlive-turabian-formatting.
* gnu/packages/tex.scm (texlive-turabian-formatting): New variable.
2023-08-19 20:33:49 +02:00
Nicolas Goaziou 57f2c35044
gnu: Add texlive-splitbib.
* gnu/packages/tex.scm (texlive-splitbib): New variable.
2023-08-19 20:33:48 +02:00
Nicolas Goaziou 682b1c063d
gnu: Add texlive-sort-by-letters.
* gnu/packages/tex.scm (texlive-sort-by-letters): New variable.
2023-08-19 20:33:48 +02:00
Nicolas Goaziou 8046a7753b
gnu: Add texlive-showtags.
* gnu/packages/tex.scm (texlive-showtags): New variable.
2023-08-19 20:33:48 +02:00
Nicolas Goaziou a00969c339
gnu: Add texlive-rsc.
* gnu/packages/tex.scm (texlive-rsc): New variable.
2023-08-19 20:33:48 +02:00
Nicolas Goaziou 47fa4a3f69
gnu: Add texlive-pnas2009.
* gnu/packages/tex.scm (texlive-pnas2009): New variable.
2023-08-19 20:33:47 +02:00
Nicolas Goaziou 9613592ccb
gnu: Add texlive-plainyr.
* gnu/packages/tex.scm (texlive-plainyr): New variable.
2023-08-19 20:33:47 +02:00
Nicolas Goaziou 1b0d2100b8
gnu: Add texlive-perception.
* gnu/packages/tex.scm (texlive-perception): New variable.
2023-08-19 20:33:47 +02:00
Nicolas Goaziou d4c347f99c
gnu: Add texlive-oscola.
* gnu/packages/tex.scm (texlive-oscola): New variable.
2023-08-19 20:33:46 +02:00
Nicolas Goaziou e4dbc07c9b
gnu: Add texlive-notex-bst.
* gnu/packages/tex.scm (texlive-notex-bst): New variable.
2023-08-19 20:33:46 +02:00