Age | Commit message (Expand) | Author |
2024-05-25 | gnu: lvm2: Remove systemd rule....* gnu/packages/patches/lvm2-no-systemd.patch: New file.
* gnu/packages/linux.scm (lvm2)[source]: Apply patch.
* gnu/local.mk: Register new patch.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net>
Change-Id: Ib4342e0ce3cc5778857ccecd557f3d397aa870d9
| Yann Dupont |
2024-05-25 | services: shepherd: Failure to load a service does not prevent booting....Fixes <https://issues.guix.gnu.org/71144>.
Fixes a bug whereby, when loading a service file would fail, for
instance due to an unbound variable, a REPL would be opened on the
console, preventing the system from booting.
This fixes that by isolating service load errors and making them
non-fatal.
* gnu/services/shepherd.scm (shepherd-configuration-file)[config]:
Remove call to ‘call-with-error-handling’. Use ‘filter-map’ instead of
‘map’ to iterate over service files, and catch exceptions raised by
‘load-compiled’.
Change-Id: Ie6e76ea514837f85386232f797bc77b2882b5c22
| Ludovic Courtès |
2024-05-25 | deduplication: Detect holes and create sparse files....This reduces disk usage of sparse files that are substituted such as
Guile object files (ELF files). As of Guile 3.0.9, .go files are sparse
due to ELF sections being aligned on 64 KiB boundaries.
This reduces disk usage reported by “du -sh” by 9% for the ‘guix’
package, by 23% for ‘guile’, and by 35% for ‘guile-git’.
* guix/store/deduplication.scm (hole-size, find-holes): New procedures.
(tee)[seekable?]: New variable.
[read!]: Add case when SEEKABLE? is true.
* tests/store-deduplication.scm (cartesian-product): New procedure.
("copy-file/deduplicate, sparse files (holes: ~a/~a/~a)"): New test set.
Change-Id: Iad2ab7830dcb1220e2026f4a127a6c718afa8964
| Ludovic Courtès |
2024-05-25 | maint: Suggest ‘guix git authenticate’ for initial authentication....The previous recommendation, running ‘make authenticate’, was insecure
because it led users to run code from the very repository they want to
authenticate:
https://lists.gnu.org/archive/html/guix-devel/2024-04/msg00252.html
* Makefile.am (commit_v1_0_0, channel_intro_commit)
(channel_intro_signer, GUIX_GIT_KEYRING, authenticate): Remove.
* Makefile.am (.git/hooks/%): New target, generalization of previous
‘.git/hooks/pre-push’ target.
(nodist_noinst_DATA): Add ‘.git/hooks/post-merge’.
* doc/contributing.texi (Building from Git): Suggest ‘guix git
authenticate’ instead of ‘make authenticate’.
* etc/git/post-merge: New file.
* etc/git/pre-push: Run ‘guix git authenticate’ instead of ‘make
authenticate’.
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reported-by: Skyler Ferris <skyvine@protonmail.com>
Change-Id: Ia415aa8375013d0dd095e891116f6ce841d93efd
| Ludovic Courtès |
2024-05-25 | doc: Document ‘assume-valid-file-name’ in ‘local-file’....* doc/guix.texi (G-Expressions): Document the use of assume-valid-file-name with
local-file.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I132f78e198cbf3ba2e5a677d671563d753de534c
| Richard Sent |
2024-05-25 | gnu: Add tests for oci-container-service-type....* gnu/tests/docker.scm (run-oci-container-test): New variable;
(%test-oci-container): new variable.
Change-Id: Idefc3840bdc6e0ed4264e8f27373cd9a670f87a0
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Giacomo Leidi |
2024-05-25 | gnu: docker: Allow passing tarballs for images in oci-container-configuration....This commit allows for loading an OCI image tarball before running an
OCI backed Shepherd service. It does so by adding a one shot Shepherd
service to the dependencies of the OCI backed service that at boot runs
docker load on the tarball.
* gnu/services/docker.scm (oci-image): New record;
(lower-oci-image): new variable, lower it;
(string-or-oci-image?): sanitize it;
(oci-container-configuration)[image]: allow also for oci-image records;
(oci-container-shepherd-service): use it;
(%oci-image-loader): new variable.
Change-Id: Ie504f479ea0d47f74b0ec5df9085673ffd3f639d
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Giacomo Leidi |
2024-05-25 | gnu: docker: Allow setting Shepherd dependencies in oci-container-configuration....* gnu/services/docker.scm (oci-container-configuration)
[requirement]: New field;
(list-of-symbols): sanitize it;
(oci-container-shepherd-service): use it.
* doc/guix.texi: Document it.
Change-Id: Ic0ba336a2257d6ef7c658cfc6cd630116661f581
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Giacomo Leidi |
2024-05-25 | gnu: docker: Allow setting host environment variables in oci-container-config......* gnu/services/docker.scm (oci-container-configuration)
[host-environment]: New field;
(oci-sanitize-host-environment): sanitize it;
(oci-container-shepherd-service): use it.
* doc/guix.texi: Document it.
Change-Id: I4d54d37736cf09f042a71cb0b6e673abc0948d9c
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Giacomo Leidi |
2024-05-25 | gnu: docker: Provide escape hatch in oci-container-configuration....* gnu/services/docker.scm (exports): Add missing procedures;
(oci-container-service-type)[description]: Docker and OCI images should
mean the same thing;
(oci-container-configuration): clarify field types;
[extra-arguments]: new field;
(oci-sanitize-extra-arguments): sanitize it;
(oci-container-shepherd-service): use it.
* doc/guix.texi: Document it.
Change-Id: I64e9d82c8ae538d59d1c482f23070a880156ddf7
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Giacomo Leidi |
2024-05-25 | services: Add restic-backup service....* gnu/services/backup.scm: New file.
* gnu/local.mk: Add this.
* doc/guix.texi: Document this.
Change-Id: I9efd5559bb445b484107a7c27c2d0a65ccad1e66
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Giacomo Leidi |
2024-05-25 | environment: Fix type error with ‘-C’ when ‘getpwuid’ fails....Fixes a bug with ‘guix shell -C …’ in cases where ‘getpwuid’
returns #f (for example because nscd isn’t running) and
‘user’ is #f.
* guix/scripts/environment.scm (launch-environment/container): Use
‘name’ when building the ‘directory’ value, not ‘user’ since it can be #f.
Change-Id: I5da807d982a1edbb4122ac29b5a1e5fc4b0ce1b7
| Ludovic Courtès |
2024-05-25 | gnu: cl-nodgui: Update to 0.6.2.0-1.9d0c973....* gnu/packages/lisp-xyz.scm (sbcl-nodgui): Update to 0.6.2.0-1.9d0c973.
[inputs]: Add sbcl-flexi-streams, sbcl-static-vectors,
sbcl-trivial-garbage. Move sbcl-clunit2 to...
[native-inputs]: ... here.
Change-Id: I2299175a06786ce93fde34aa54005c00b40edd71
| Guillaume Le Vaillant |
2024-05-25 | gnu: cl-access: Update to 1.6.0-1.a4f87fc....* gnu/packages/lisp-xyz.scm (sbcl-access): Update to 1.6.0-1.a4f87fc.
[source, home-page]: Switch to maintained repository.
[inputs]: Remove sbcl-anaphora and sbcl-cl-interpol. Add sbcl-cl-ppcre.
Change-Id: Idbc140b1264156e975b69ab65423765d5f5a77d1
| Guillaume Le Vaillant |
2024-05-25 | gnu: cl-stmx: Update to 2.0.5-3.95f7dea....* gnu/packages/lisp-xyz.scm (sbcl-stmx): Update to 2.0.5-3.95f7dea.
[arguments]: Remove 'fix-build' phase.
Change-Id: I72e3f323f38ced32ea03ab2661d5802e93e13572
| Guillaume Le Vaillant |
2024-05-25 | gnu: cl-collectors: Update to 1.0-2.4c5e70c....* gnu/packages/lisp-xyz.scm (sbcl-collectors): Update to 1.0-2.4c5e70c.
Change-Id: I95c9beb1aa5e59b658ee091ab14d803e6eded3fe
| Guillaume Le Vaillant |
2024-05-25 | gnu: cl-cf: Update to 1.0-2.fbc025b....* gnu/packages/lisp-xyz.scm (sbcl-cf): Update to 1.0-2.fbc025b.
Change-Id: Ide38475fb171f71c5dc35bb12d66a81b0f08cf64
| Guillaume Le Vaillant |
2024-05-24 | gnu: gssdp-1.4: Fix building....This is a follow-up to 9901416233867233192b63fde7f616751127b189.
* gnu/packages/gnome.scm (gssdp-1.4)[arguments]: Override inherited
arguments to set the configure-flags specifically.
Change-Id: Ifbdaf278a402a26b344b6dcd7a5e3d4e22148561
| Efraim Flashner |
2024-05-23 | gnu: ctl: Update to 1.5.3....* gnu/packages/graphics.scm (ctl): Update to 1.5.3.
[source]: Download using git-fetch.
[arguments]: Don't skip the tests.
[inputs]: Add libtiff.
Change-Id: Iae08b6a2a7c0418bde10b31c3356425750703a9f
| Efraim Flashner |
2024-05-23 | gnu: roxterm: Fix lint errors....* gnu/packages/terminals.scm (roxterm)[source]: Add the file-name field.
Follow source url redirect.
[home-page]: Follow redirect.
Change-Id: Id68c87679a95656212c0c0edb916066e90a037d7
| Efraim Flashner |
2024-05-23 | gnu: shared-mime-info: Fix cross-compiling....* gnu/packages/freedesktop.scm (shared-mime-info)[native-inputs]: When
cross-compiling add libxml2 and this-package.
Change-Id: I254a685a492b9080342b134ff23d9ccab0ecec3d
| Efraim Flashner |
2024-05-23 | gnu: libbraille: Fix build on some architectures....* gnu/packages/accessibility.scm (libbraille)[arguments]: When building
with config as a native-input replace the config.guess and config.sub
files.
[native-inputs]: When building for aarch64-linux, powerpc64le-linux or
riscv64-linux add config.
Change-Id: I7e7953a2b91868fa3f2698d3cb82da134564c06b
| Efraim Flashner |
2024-05-23 | gnu: gtk-vnc: Build with gjs on more architectures....* gnu/packages/gnome.scm (gtk-vnc)[native-inputs] Use gjs as an input on
architectures where it is supported.
Change-Id: I723f53be8e225732572ede81a03d712a946be528
| Efraim Flashner |
2024-05-23 | gnu: glade3: Build with gjs on more architectures....* gnu/packages/gnome.scm (glade3)[inputs]: Use gjs as an input on
architectures where it is supported.
Change-Id: I6d6596045b7a3f0dc22207350b353fcd82961958
| Efraim Flashner |
2024-05-23 | gnu: gtk-vnc: Build without node....* gnu/packages/gnome.scm (gtk-vnc)[native-inputs]: Remove node.
Change-Id: I35b4be1fa203cf75da3d88f078ac0fc613a60489
| Efraim Flashner |
2024-05-23 | gnu: brltty: Build with java only on some architectures....* gnu/packages/accessibility.scm (brltty)[native-inputs]: Only build
with icedtea on x86_64-linux, i686-linux and aarch64-linux.
Change-Id: I95e2cfa17c1f484677ad8f26e3a865eba83362dd
| Efraim Flashner |
2024-05-23 | gnu: gnome-text-editor: Build with cmake-minimal....* gnu/packages/gnome.scm (gnome-text-editor)[native-inputs]: Replace
cmake with cmake-minimal.
Change-Id: I3e23fb390896ab9f1fb3be36789fbe84df04ae36
| Efraim Flashner |
2024-05-23 | gnu: gnome-meta-core-utilities: Add eog unconditionally....eog was removed because it required librsvg built with rust, but
gnome-shell also requires the same librsvg already, so there was no
reason to limit the architectures eog was installed on.
* gnu/packages/gnome.scm (gnome-meta-core-utilities)[propagated-inputs]:
Add eog unconditionally.
Change-Id: I333d1a712b1d04409f3deccc90aa5adb2a4fac1b
| Efraim Flashner |
2024-05-23 | gnu: gssdp: Enable building on more architectures....* gnu/packages/gnome.scm (gssdp)[arguments]: Adjust configure-flags to
only build the manpages when pandoc is an input.
[native-inputs]: Only add pandoc when on architectures where it is
supported.
Change-Id: I6e69833295fc19b311cdaf977b3b5cc7abc01589
| Efraim Flashner |
2024-05-23 | gnu: Add specification-ipld....* gnu/packages/specifications.scm (specification-ipld): New variable.
Change-Id: Ib36d0cdb4a6d20da789ba20830945c8a7d223b69
| Sharlatan Hellseher |
2024-05-23 | gnu: kubo: Remove propagated package....* gnu/packages/ipfs.scm (kubo)
[inputs]: Remove go-golang-org-x-text. Add annotation for indirect
inputs where they are needed for.
Change-Id: I90eb26ab5d386a70f3581030ef4b3f9b35e05e88
| Sharlatan Hellseher |
2024-05-23 | gnu: abseil-cpp: Fix linking on riscv64-linux....* gnu/packages/cpp.scm (abseil-cpp)[arguments]: When building for
riscv64-linux adjust the configure-flags to link with latomic.
Change-Id: I12099d1a99b54f20f7ddbba2fbd495379a05476b
| Efraim Flashner |
2024-05-23 | gnu: wireshark: Update to 4.2.5 [security fixes]....Fixes CVE-2024-4853, CVE-2024-4854, CVE-2024-4855.
* gnu/packages/networking.scm (wireshark): Update to 4.2.5.
Change-Id: I1f60714bbea05a44d78f420404af5044d344fd12
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Timotej Lazar |
2024-05-23 | gnu: dcmtk: Update to 3.6.8. [security-fixes]...This fixes CVE-2022-43272.
* gnu/packages/image-processing.scm (dcmtk): Update to 3.6.8.
Change-Id: I4e0203219280a2571267f566cdfc8c2a9ea3fd18
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Nicolas Graves via Guix-patches via |
2024-05-23 | gnu: podman: Update to 5.0.3 [security fixes]....This fixes CVE-2024-3727.
* gnu/packages/containers.scm (podman): Update to 5.0.3.
Change-Id: Iefe98746c993830ef12c49733b8407b10305d065
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Tomas Volf |
2024-05-23 | gnu: buildah: Update to 1.35.4 [security fixes]....This fixes CVE-2024-3727 and CVE-2024-28180.
* gnu/packages/containers.scm (buildah): Update to 1.35.4.
Change-Id: I5ee2b4591b39ee85d7236aedda7a2508df8e0e48
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Tomas Volf |
2024-05-23 | gnu: skopeo: Update to 1.15.1 [security fixes]....This fixes CVE-2024-3727.
* gnu/packages/virtualization.scm (skopeo): Update to 1.15.1.
Change-Id: Icebb6f50e7317bce9ff106d71ad30dcfa6665666
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Tomas Volf |
2024-05-23 | gnu: bvi: Update to 1.4.2....* gnu/packages/hexedit.scm (bvi): Update to 1.4.2.
Change-Id: I9ac29adb8707f6daf61f397778a1f94b94f808ae
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Artyom V. Poptsov |
2024-05-23 | gnu: passt: Update to 2024_05_10.7288448....* gnu/packages/containers.scm (passt): Update to 2024_05_10.7288448.
Change-Id: Ic7b1e3423ad18c0ce0f06ce111f3dfdab04e860f
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Tomas Volf |
2024-05-23 | gnu: Add pkcs11-helper....* gnu/packages/security-token.scm (pkcs11-helper): New variable.
Change-Id: Ib17e0cf209a6fe797d0c797829ba91091b719028
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
| Andy Tai |
2024-05-23 | gnu: kubo: Unbundle go-github-com-quic-go-quic-go....* gnu/packages/ipfs.scm (kubo): Unbundle go-github-com-quic-go-quic-go.
[inputs]: Remove go-github-com-francoispqt-gojay and
go-github-com-gogo-protobuf; add go-github-com-quic-go-quic-go.
Change-Id: I4838bfed195b5e094f68ef73333ce9c7c7c7566e
| Sharlatan Hellseher |
2024-05-23 | gnu: Remove go-github-com-lucas-clemente-quic-go....* gnu/packages/golang-web.scm (go-github-com-lucas-clemente-quic-go): Delete variable.
Change-Id: Iac5dfdf15badb1de74323040267f814cdf7cd0f9
| Sharlatan Hellseher |
2024-05-23 | gnu: go-github-com-quic-go-quic-go: Enable tests....* gnu/packages/golang-web.scm (go-github-com-quic-go-quic-go): Enable tests.
[arguments] <#:phases>: Add 'remove-failing-tests. Use custom 'check
phase.
[propagated-inputs]: Remove go-github-com-cheekybits-genny,
go-github-com-golang-protobuf-proto,
go-github-com-marten-seemann-chacha20, and
go-github-com-quic-go-qtls-go1-20; add
go-github-com-francoispqt-gojay.
[native-inputs]: Add go-ginkgo, go-github-com-onsi-ginkgo-v2,
go-go-uber-org-mock, and go-golang-org-x-time.
Change-Id: I8bc03cbe1e9766188157e621f4d7f9e3a7f6adeb
| Sharlatan Hellseher |
2024-05-23 | gnu: go-github-com-syndtr-goleveldb-leveldb: Move to golang-xyz....* gnu/packages/golang.scm (go-github-com-syndtr-goleveldb-leveldb): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Ib457abe33612b371c33985c6b3b0e9372221e37d
| Sharlatan Hellseher |
2024-05-23 | gnu: go-github-com-syndtr-goleveldb-leveldb: Use go-1.21....* gnu/packages/golang.scm (go-github-com-syndtr-goleveldb-leveldb)
[arguments] <#:go>: Swap to go-1.21.
Change-Id: I6ecbfb8d2cbf29dc177536345fb1caa5001f35df
| Sharlatan Hellseher |
2024-05-22 | gnu: Add go-ginkgo....* gnu/packages/golang-check.scm (go-ginkgo): New variable.
Change-Id: I5c56c87a75c383ec159cee4e7eaa7808bfdcd1f7
| Sharlatan Hellseher |
2024-05-22 | gnu: go-github-com-onsi-gomega: Update to 1.33.1....* gnu/packages/golang-check.scm (go-github-com-onsi-gomega): Update to 1.33.1.
[arguments] <#:go>: Swap to go-1.21.
[propagated-inputs]: Remove go-gopkg-in-yaml-v2; add go-gopkg-in-yaml-v3.
Change-Id: I910206fd44198550bdc7da1ebdaff3874d89f1ed
| Sharlatan Hellseher |
2024-05-22 | gnu: go-github-com-onsi-ginkgo-v2: Update to 2.18.0....* gnu/packages/golang-check.scm (go-github-com-onsi-ginkgo-v2): Update to 2.18.0.
[propagated-inputs]: Remove go-github-com-go-task-slim-sprig; add
go-github-com-go-task-slim-sprig-v3 and go-github-com-google-pprof.
Change-Id: I3af9d36e1428745557173135fcaa1e4623d4f57f
| Sharlatan Hellseher |
2024-05-22 | gnu: Add go-github-com-go-task-slim-sprig-v3....* gnu/packages/golang-xyz.scm (go-github-com-go-task-slim-sprig-v3): New
variable.
Change-Id: I46ef3728993556dfc2d6c9349da6962d747e2664
| Sharlatan Hellseher |
2024-05-22 | gnu: go-github-com-go-task-slim-sprig: Enable tests....* gnu/packages/golang-xyz.scm (go-github-com-go-task-slim-sprig)
[arguments] <#:tests>: Enable it.
<#:phases>: Add 'remove-failing-tests phase.
Change-Id: I32424925a96defd69e2871dee079db8bef2861b2
| Sharlatan Hellseher |