Commit graph

148444 commits

Author SHA1 Message Date
Janneke Nieuwenhuizen
fbc5e7fc40
gnu: packages: Remove x86_64-gnu next to i586-gnu from supported-systems.
* gnu/packages/golang.scm (go-1.16)[supported-systems]: Remove "x86_64-gnu".
* gnu/packages/linux.scm (proot)[supported-systems]: Likewise.
* gnu/packages/valgrind.scm (valgrind)[supported-systems]: Likewise.
* gnu/packages/virtualization.scm (qemu)[supported-systems]: Likewise.
* gnu/packages/heads.scm (musl-cross)[supported-systems]: Delete target-hurd?
instead of remove'ing "i586-gnu".
* gnu/packages/linux.scm (net-tools)[supported-systems]: Likewise.
(libcap)[supported-systems]: Likewise.
(fuse)[supported-systems]: Likewise.
(kmod)[supported-systems]: Likewise.
(lvm2)[supported-systems]: Likewise.
(mdadm)[supported-systems]: Likewise.
(proot)[supported-systems]: Likewise.
* gnu/packages/lisp.scm (ecl)[supported-systems]: Likewise.
(sbcl)[supported-systems]: Likewise.
* gnu/packages/virtualization.scm (qemu)[supported-systems]: Likewise.

Change-Id: I506e056b7aeb40f004fcc31ee85962cb065eac29
2024-12-10 23:00:43 +01:00
Janneke Nieuwenhuizen
376d957291
gnu: guix: Update to 1.4.0-29.30322214d4.
* gnu/packages/package-management.scm (guix): Update to 1.4.0-29.30322214d4.

Change-Id: Iafea6ebd78f0e6dcaf2e65bb5602cfba6e085f9e
2024-12-10 21:37:22 +01:00
Janneke Nieuwenhuizen
30322214d4
gnu: linux-libre-headers: Remove hurd systems from supported-systems.
Reported by dariqq via IRC.

* gnu/packages/heads.scm (make-linux-libre-headers*): Delete target-hurd? from
supported-systems.

Change-Id: I32d8209e505d523a4b1c0a68bbb4e1b5c5018305
2024-12-10 21:29:20 +01:00
Janneke Nieuwenhuizen
8966bd6c06
gnu: guix: Update to 1.4.0-28.285f0862d8.
* gnu/packages/package-management.scm (guix): Update to 1.4.0-28.285f0862d8.

Change-Id: I020edc480454fb198af343fee481eaf5b5131498
2024-12-10 17:53:10 +01:00
Janneke Nieuwenhuizen
285f0862d8
services: hurd-vm: Set overload-threshold to 1.8.
The uptime/ /proc/loadavg reporting in the Hurd is 1.0 for a machine without
load.  This may have been caused by recent SMP work.

* gnu/services/virtualization.scm (hurd-vm-guix-extension): Set
overload-threshold to 1.8 to allow offloading to actually happen.

Change-Id: I2b5be4d8e8d884cba767702f9cdccf91717eb95d
2024-12-10 17:43:49 +01:00
Janneke Nieuwenhuizen
832ef198f7
guile: Silence GC warnings on the Hurd, part II.
This is a follow-up to commit
    b0416b8503
    guile: Silence GC warnings on the Hurd.

This should work around <https://issues.guix.gnu.org/73181>, resurrecting
offloading to the Hurd.

* gnu/packages/aux-files/guile-launcher.c: (main)[__GNU__]: Move code to
silence warnings to...
(inner_main)[__GNU__]: ...here.

Change-Id: I408201f7f4072c9a33837e6020ac63270b33702e
2024-12-10 13:41:38 +01:00
Efraim Flashner
93e1586116
gnu: libssh: Fix cross-compiling to 32-bit architectures.
* gnu/packages/ssh.scm (libssh)[arguments]: When cross-compiling to any
32-bit architecture add a configure-flag to only warn about incompatible
pointer types.

Change-Id: I3ae71d885bd30a6ba51886824f6dee688538f2f2
2024-12-10 09:09:31 +02:00
Danny Milosavljevic
68fef86404
gnu: Add python-mathics-pygments.
* gnu/packages/maths.scm (python-mathics-pygments): New variable.

Change-Id: If90c2d306929a9596590d4625f41939b440f4aa9
2024-12-10 03:22:00 +01:00
Danny Milosavljevic
9e1ee5f77d
gnu: Add python-columnize.
* gnu/packages/python-xyz.scm (python-columnize): New variable.

Change-Id: Idf3ec4993b9d93d3d1e41e101dfdd76adff922fb
2024-12-10 03:19:45 +01:00
Danny Milosavljevic
7efe81ea7d
gnu: Add python-mathics-core.
* gnu/packages/maths.scm (python-mathics-core): New variable.

Change-Id: I0e2571569e07ff89aa9bd1fa2638ff3d807bd4ec
2024-12-10 03:14:19 +01:00
Danny Milosavljevic
8ab106b3b7
gnu: Add python-mathics-scanner.
* gnu/packages/maths.scm (python-mathics-scanner): New variable.

Change-Id: I62aabc48e691dba587be0ddf34dac42a2d316b3d
2024-12-10 00:53:19 +01:00
Doğan Çeçen
dcaccc8b72
daemon: Fix linking gcrypt when --as-needed linker arg is used
This is a followup to 8a7bd211d2.

As it is mentioned in autoconf manual that library names should be
specified in LIBS, not LDFLAGS. See:

https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.72/html_node/Preset-Output-Variables.html#index-LDFLAGS-2

This change also brings back the save_* vars trick that was there
before. I missed in my earlier change that nix/local.mk was referring
LIBGCRYPT_* vars directly.

And, instead of CXXFLAGS, CPPFLAGS is used since the latter is probably
more correct as this is used for include dirs, therefore using
preprocessor flags.

Tested with ./configure LDFLAGS="-Wl,--as-needed" --with-libgcrypt-prefix=... combinations.

* config-daemon.ac: Set ‘LIBGCRYPT_CPPFLAGS’ instead of
‘LIBGCRYPT_CXXFLAGS’.  Set ‘LIBGCRYPT_LIBS’ in addition to
‘LIBGCRYPT_LDFLAGS’.  Save and restore ‘CPPFLAGS’, ‘LDFLAGS’, and ‘LIBS’
around test.
* nix/local.mk (libutil_a_CPPFLAGS): Add $(LIBGCRYPT_CPPFLAGS).
(libstore_a_CXXFLAGS): Remove $(LIBGCRYPT_CFLAGS).
(guix_daemon_LDFLAGS): New variable.

Change-Id: Iadb10e1994c9a78e2927847af2cfe5e096fbb2a8
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2024-12-09 23:15:45 +01:00
Richard Sent
b0421cc964
services: admin: Improve use of unattended-upgrade reboot? field.
This ensures the unattended upgrade job successfully reboots regardless of the
value for services-to-restart. Previously the mcron service may be restarted
which would halt script execution before the system rebooted.

* gnu/services/admin.scm (unattended-upgrade-mcron-jobs): Do not restart
services when reboot? is #t.
* doc/guix.texi (Unattended Upgrades): Document it.

Change-Id: I8e486a764ec1dc5c3090130cc447a0cc3f5a2e00
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2024-12-09 23:15:45 +01:00
Andy Tai
89ed6e80bb
gnu: units: Update to 2.24.
* gnu/packages/maths.scm (units): Update to 2.24.

Change-Id: I4c201729788dd1e2d98a981f47906d606663bbde
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2024-12-09 23:15:44 +01:00
Ludovic Courtès
8eb7176fef
home: services: shepherd: Default to 1.0.
* gnu/home/services/shepherd.scm (<home-shepherd-configuration>)[shepherd]:
Default to SHEPHERD-0.10.

Change-Id: I2c4acc28978ac3376fe5683f60941e28edea5746
2024-12-09 23:15:44 +01:00
Ludovic Courtès
e065384eee
services: shepherd: Remove ‘call-with-{input,output}-file’ replacements.
Shepherd 1.0.0 provides similar replacements.

* gnu/services/shepherd.scm (shepherd-configuration-file): Remove
‘call-with-input-file’ and ‘call-with-output-file’ O_CLOEXEC
replacements.

Change-Id: Id8a4d5cfcb9b9213f3a017cafead21cc86fdb51e
2024-12-09 23:15:44 +01:00
Ludovic Courtès
2a5c003c53
services: shepherd: Default to 1.0.
* gnu/services/shepherd.scm (<shepherd-configuration>)[shepherd]:
Default to SHEPHERD-1.0.
* gnu/system/hurd.scm (%base-packages/hurd): Change to SHEPHERD-1.0.

Change-Id: I7b0c3041d61a6f5d89c9d6d3caf7a8eedf5d8ca5
2024-12-09 23:15:44 +01:00
Ludovic Courtès
050d9f5158
gnu: shepherd: Add 1.0.0.
* gnu/packages/admin.scm (shepherd-1.0): New variable.

Change-Id: If73ff02ea15d6acfc4c0e2d3f8ef467081b6b737
2024-12-09 23:15:44 +01:00
Ludovic Courtès
e7cd328714
tests: Adjust for new return value of ‘start-service’.
In Shepherd 1.0, the “running value” of processes is no longer a plain
integer; instead, it is a (process …) sexp.  This commit adjusts tests
to this change in a way that works both for 1.0 and for previous
versions.

* gnu/tests/databases.scm (run-memcached-test)
(run-mysql-test): Don’t expect PID to be a number.
* gnu/tests/docker.scm (run-docker-test)
(run-docker-system-test, run-oci-container-test): Likewise.
* gnu/tests/guix.scm (run-guix-build-coordinator-test)
(run-guix-data-service-test, run-nar-herder-test)
(run-bffe-test): Likewise.
* gnu/tests/ldap.scm (run-ldap-test): Likewise.
* gnu/tests/monitoring.scm (run-prometheus-node-exporter-server-test):
Likewise.
* gnu/tests/virtualization.scm (run-libvirt-test)
(run-qemu-guest-agent-test, run-childhurd-test): Likewise.
* gnu/tests/web.scm (run-webserver-test, run-php-fpm-test)
(run-hpcguix-web-server-test, run-patchwork-test)
(run-agate-test): Likewise
* gnu/tests/ssh.scm (run-ssh-test): Accept a number, an ‘inetd-service’
sexp, or a ‘process’ sexp.

Change-Id: I8c7a37a981f0788780fbc33752a38e7f9a026437
2024-12-09 23:15:44 +01:00
Sharlatan Hellseher
51ee3a7278
gnu: clustershell: Update to 1.9.2.
* gnu/packages/ssh.scm (clustershell): Update to 1.9.2.
[arguments]<tests?>: Explicitly disable them as non of them were picked
and when invoked with nosetest mostly fail.
<phases>: Remove 'record-opnssh-file-name, add 'fix-pathes.
[native-inputs]: Add python-setuptools and python-wheel.

Change-Id: I52ebe7f7ed5f2624ecd5182b915bdeaffc207420
2024-12-09 21:19:36 +00:00
Sharlatan Hellseher
e0500cd2ca
gnu: clustershell: Improve package style.
* gnu/packages/ssh.scm (clustershell): Use G-expressions, re-order
fields.
[build-system]: Swap to pyproject-build-system.

Change-Id: I3a4983eef65d88f0b94577679ec8788fcb5b4d40
2024-12-09 20:24:49 +00:00
Sharlatan Hellseher
e6e4e88f45
gnu: webssh: Update to 1.6.2.
* gnu/packages/ssh.scm (webssh): Update to 1.6.2.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.

Change-Id: Icaef06a86ac8c4c02a74a376d0501152675d2122
2024-12-09 20:19:18 +00:00
Roman Scherer
ec1a67d4ff
gnu: python-asyncssh: Disable failing tests on aarch64.
* gnu/packages/ssh.scm (python-asyncssh): Disable failing tests on aarch64.

Change-Id: I9f3a746bdf820c1d357fd655f1ed1ff197327856
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-12-09 20:19:18 +00:00
Vagrant Cascadian
da3c8a963f
gnu: guile-ssh: Update to 0.18.0.
* gnu/packages/ssh.scm (guile-ssh): Update to 0.18.0.
[source]: Drop patch, fixed upstream.
* gnu/packages/patches/guile-ssh-rename-bool.patch: Remove patch.
* gnu/local.mk (dist_patch_DATA): Update with removed patch.
2024-12-09 10:40:57 -08:00
Ekaitz Zarraga
a5a540d713
gnu: duckdb: Build with for core extensions.
DuckDB comes with a set of built-in extensions.  This commit enables
those that don't require extra dependencies.

* gnu/packages/databases.scm (duckdb)[arguments]<#:configure-flags>: Add
  BUILD_EXTENSIONS with autocomplete, fts, icu, json, parquet and tpch.

Change-Id: Ibac5efaeec04dcba98af1c497e75632166941fc2
2024-12-09 16:48:22 +01:00
Igor Goryachev
9d09b0cf84
gnu: erlang: Update to 27.1.3.
* gnu/packages/erlang.scm (erlang): Update to 27.1.3.

Change-Id: Ia9689daef8ac28f5d415ec03e790da566c15ccc3
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-12-09 14:27:59 +08:00
Zheng Junjie
e8a68dcbd2
gnu: pkgconf: Update to 2.3.0.
* gnu/packages/pkg-config.scm (pkgconf): Update to 2.3.0.

Change-Id: Ifaed690166dd3461161594a94146638eb872bb20
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-12-09 14:27:59 +08:00
Zheng Junjie
cd16ef386c
gnu: monado: Update to 24.0.0.
* gnu/packages/graphics.scm (monado): Update to 24.0.0.
[source]: Switch to git-fetch.
[build-system]: Switch to cmake-build-system.
[arguments]: Remove configure-flags.

Change-Id: Iba340dd539de40235e0f67b97ddf2b646296b883
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-12-09 09:09:10 +08:00
Zheng Junjie
0fdfe9d5dd
gnu: ccls: Update to 0.20241108.
* gnu/packages/cpp.scm (ccls): Update to 0.20241108.

Change-Id: I67ba31ec4486371334968553acf66144524531ab
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-12-09 09:08:17 +08:00
Janneke Nieuwenhuizen
4e8710b280
gnu: guile-emacs: Update home-page.
* gnu/packages/emacs.scm (guile-emacs)[home-page]: New field.

Change-Id: Icd092c0d1762f2a5853e2e77d21f50d47fcf8a41
2024-12-08 20:30:51 +01:00
John Kehayias
17d86ac9df
gnu: hyprland: Update to 0.45.2.
* gnu/packages/wm.scm (hyprland): Update to 0.45.2.

Change-Id: Ib93355a3381316fa8c1f5eddf61a01c80b21ebd7
2024-12-08 11:33:02 -05:00
John Kehayias
731fa9f96a
gnu: python-gphoto2: Update to 2.5.0.
* gnu/packages/python-xyz.scm (python-gphoto2): Update to 2.5.0.
[license]: Change to lgpl3+ (upstream changed in version 2.4.0).

Change-Id: Ib15737ded100458c955652ee2c075a12016d0689
2024-12-08 11:32:57 -05:00
Janneke Nieuwenhuizen
e46bc3d928
gnu: guile-emacs: Support running emacs from the store.
* gnu/packages/emacs.scm (guile-emacs)[argumets]: Replace stage
"wrap-emacs-paths" to restrict EMACSLOADPATH.
[native-search-paths]: Remove.

Change-Id: Ie2c222a53a5bd79b1a8a0b8424a90e6e06b77fb9
2024-12-08 17:23:27 +01:00
Liliana Marie Prikler
eafd91c262
gnu: daikichi: Update to 0.3.1.
* gnu/packages/toys.scm (daikichi): Update to 0.3.1.
2024-12-08 14:10:54 +01:00
Rostislav Svoboda
d2509dbc64
gnu: emacs-lsp-java: Update to 3.1-1.4909c14
* gnu/packages/emacs-xyz.scm (emacs-lsp-java): Update to 3.1-1.4909c14.

Change-Id: I16eb365d0fd7b14cd2bdf837c009c931e01ca607
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2024-12-08 14:10:54 +01:00
Liliana Marie Prikler
a4bdae0f47
gnu: python-clinguin: Update to 2.1.1.
* gnu/packages/potassco.scm (python-clinguin): Update to 2.1.1.
[source]: Adjust snippet accordingly.
[inputs]: Add python-clingo-dl and python-clingexplaid.
2024-12-08 14:10:54 +01:00
Liliana Marie Prikler
ae18549bf4
gnu: python-clinguin: Fix homepage.
* gnu/packages/potassco.scm (python-clinguin)[home-page]: Use
“https://github.com/potassco/clinguin”.
2024-12-08 14:10:54 +01:00
Liliana Marie Prikler
fe0b1aea1f
gnu: Add python-clingexplaid.
* gnu/packages/potassco.scm (python-clingexplaid): New variable.
2024-12-08 14:10:52 +01:00
Sharlatan Hellseher
c01730199d
gnu: python-asyncssh: Update to 2.18.0.
* gnu/packages/ssh.scm (python-asyncssh): Update to 2.18.0.

Change-Id: I03ac3759e90261219e2f90dcc668c7af019a957b
2024-12-08 12:32:06 +00:00
Sharlatan Hellseher
6fb8613286
gnu: python-asyncssh: Improve package style.
* gnu/packages/ssh.scm: Add pyproject-build-system.
(python-asyncssh): Use G-expressions and new package style.
[build-system]: Swap to pyrpoject-build-system.
[arguments]<test-flags>: Move skip test logic here.
<phases>: Remove 'disable-tests, add 'pre-check.
[native-inputs]: Apply list style and sort alphabetically. Add
python-setuptools, and python-wheel.
[propagated-inputs]: Apply list style and sort alphabetically.

Change-Id: I021361c3667f60b60fc137380800646f10f2cd05
2024-12-08 12:32:06 +00:00
Roman Scherer
f2ad73507b
gnu: python-asyncssh: Disable flaky connection tests.
* gnu/packages/ssh.scm (python-asyncssh): Disable flaky connection tests.

Change-Id: If99cc686679fd2c731f3d66a85abe23eff6f1234
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-12-08 12:32:06 +00:00
Janneke Nieuwenhuizen
0fae91a5ef
gnu: guile-emacs: Remove hardcoded version from EMACSLOADPATH.
After a question by lilyp via IRC.

* gnu/packages/emacs.scm (guile-emacs): Add "upstream-version" to outer let.
[native-search-paths]: Use that for EMACSLOADPATH and add a comment.

Change-Id: Ie2c222a53a5bd79b1a8a0b8424a90e6e06b77fb9
2024-12-08 13:26:09 +01:00
Sharlatan Hellseher
8fb33f1f78
gnu: Add rust-cdshealpix-0.7.
* gnu/packages/crates-io.scm (rust-cdshealpix-0.7): New variable.

Change-Id: Iefc7ee7018725e3072bf7696445aab20f6f9bd32
Reviewed-by: Efraim Flashner <efraim@flashner.co.il>
2024-12-08 11:58:12 +00:00
Sharlatan Hellseher
5d73b12e6c
gnu: Add rust-katex-doc-0.1.
* gnu/packages/crates-io.scm (rust-katex-doc-0.1): New variable.

Change-Id: I62b79193b8b7764bffeb0dba23e110a34a705416
Reviewed-by: Efraim Flashner <efraim@flashner.co.il>
2024-12-08 11:58:07 +00:00
Sharlatan Hellseher
9ca0540106
gnu: Add rust-mapproj-0.3.
* gnu/packages/crates-io.scm (rust-mapproj-0.3): New variable.

Change-Id: Idf2f2cf69fdd38c7246fa49fdd61ffff450b891d
Reviewed-by: Efraim Flashner <efraim@flashner.co.il>
2024-12-08 11:58:01 +00:00
Sharlatan Hellseher
14f364515c
gnu: Add rust-stc-s-0.1.
* gnu/packages/crates-io.scm (rust-stc-s-0.1): New variable.

Change-Id: Ic6cb2c8f598219126a1d55ed979f42f0cca3e524
Reviewed-by: Efraim Flashner <efraim@flashner.co.il>
2024-12-08 11:57:43 +00:00
Hilton Chain
f1263f41ed
gnu: Add grimblast.
* gnu/packages/wm.scm (grimblast): New variable.

Change-Id: I38d8e0ff92e8724cec64d37d036ff307c96a2cc0
2024-12-08 15:28:43 +08:00
Hilton Chain
7a80df3559
gnu: Add hyprpicker.
* gnu/packages/wm.scm (hyprpicker): New variable.

Change-Id: I09cfc8b465ca0ac5d4dcbae34f680e80c74fd56f
2024-12-08 15:28:43 +08:00
Ryan Schanzenbacher
6099a39796
gnu: Add xdg-desktop-portal-hyprland.
* gnu/packages/freedesktop.scm (xdg-desktop-portal-hyprland): New variable.

Co-authored-by: Hilton Chain <hako@ultrarare.space>
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Change-Id: If8c413319b089ed5d8d75aa0503f886a81697278
2024-12-08 15:28:43 +08:00
Hilton Chain
e629e727a0
gnu: Add hyprland.
* gnu/packages/wm.scm (hyprland): New variable.

Change-Id: Idffb9309f61f30c5523e69bb6313162cff87b275
2024-12-08 15:28:43 +08:00