summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* daemon: Fix linking gcrypt when --as-needed linker arg is used•••This is a followup to 8a7bd211d21f06c1234fbb82bb905d202d58f598. 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> Doğan Çeçen2024-12-092-8/+20
* 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> Richard Sent2024-12-092-4/+10
* 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> Andy Tai2024-12-091-2/+2
* home: services: shepherd: Default to 1.0.•••* gnu/home/services/shepherd.scm (<home-shepherd-configuration>)[shepherd]: Default to SHEPHERD-0.10. Change-Id: I2c4acc28978ac3376fe5683f60941e28edea5746 Ludovic Courtès2024-12-091-1/+1
* 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 Ludovic Courtès2024-12-091-14/+0
* 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 Ludovic Courtès2024-12-092-2/+2
* gnu: shepherd: Add 1.0.0.•••* gnu/packages/admin.scm (shepherd-1.0): New variable. Change-Id: If73ff02ea15d6acfc4c0e2d3f8ef467081b6b737 Ludovic Courtès2024-12-091-0/+12
* 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 Ludovic Courtès2024-12-098-31/+40
* 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 Sharlatan Hellseher2024-12-091-7/+20
* 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 Sharlatan Hellseher2024-12-091-11/+15
* 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 Sharlatan Hellseher2024-12-091-14/+19
* 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> Roman Scherer2024-12-091-6/+13
* 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. Vagrant Cascadian2024-12-093-44/+2
* 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 Ekaitz Zarraga2024-12-091-0/+3
* 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> Igor Goryachev2024-12-091-3/+3
* 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> Zheng Junjie2024-12-091-2/+2
* 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> Zheng Junjie2024-12-091-13/+11
* 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> Zheng Junjie2024-12-091-2/+2
* gnu: guile-emacs: Update home-page.•••* gnu/packages/emacs.scm (guile-emacs)[home-page]: New field. Change-Id: Icd092c0d1762f2a5853e2e77d21f50d47fcf8a41 Janneke Nieuwenhuizen2024-12-081-0/+1
* gnu: hyprland: Update to 0.45.2.•••* gnu/packages/wm.scm (hyprland): Update to 0.45.2. Change-Id: Ib93355a3381316fa8c1f5eddf61a01c80b21ebd7 John Kehayias2024-12-081-2/+2
* 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 John Kehayias2024-12-081-3/+3
* 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 Janneke Nieuwenhuizen2024-12-081-10/+34
* gnu: daikichi: Update to 0.3.1.•••* gnu/packages/toys.scm (daikichi): Update to 0.3.1. Liliana Marie Prikler2024-12-081-2/+2
* 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> Rostislav Svoboda2024-12-081-26/+27
* 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. Liliana Marie Prikler2024-12-081-3/+6
* gnu: python-clinguin: Fix homepage.•••* gnu/packages/potassco.scm (python-clinguin)[home-page]: Use “https://github.com/potassco/clinguin”. Liliana Marie Prikler2024-12-081-1/+1
* gnu: Add python-clingexplaid.•••* gnu/packages/potassco.scm (python-clingexplaid): New variable. Liliana Marie Prikler2024-12-081-0/+33
* gnu: python-asyncssh: Update to 2.18.0.•••* gnu/packages/ssh.scm (python-asyncssh): Update to 2.18.0. Change-Id: I03ac3759e90261219e2f90dcc668c7af019a957b Sharlatan Hellseher2024-12-081-2/+2
* 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 Sharlatan Hellseher2024-12-081-33/+36
* 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> Roman Scherer2024-12-081-1/+9
* 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 Janneke Nieuwenhuizen2024-12-081-3/+6
* 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> Sharlatan Hellseher2024-12-081-0/+49
* 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> Sharlatan Hellseher2024-12-081-0/+18
* 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> Sharlatan Hellseher2024-12-081-0/+19
* 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> Sharlatan Hellseher2024-12-081-0/+25
* gnu: Add grimblast.•••* gnu/packages/wm.scm (grimblast): New variable. Change-Id: I38d8e0ff92e8724cec64d37d036ff307c96a2cc0 Hilton Chain2024-12-081-0/+60
* gnu: Add hyprpicker.•••* gnu/packages/wm.scm (hyprpicker): New variable. Change-Id: I09cfc8b465ca0ac5d4dcbae34f680e80c74fd56f Hilton Chain2024-12-081-0/+40
* 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 Ryan Schanzenbacher2024-12-081-0/+52
* gnu: Add hyprland.•••* gnu/packages/wm.scm (hyprland): New variable. Change-Id: Idffb9309f61f30c5523e69bb6313162cff87b275 Hilton Chain2024-12-081-0/+79
* gnu: Add aquamarine.•••* gnu/packages/wm.scm (aquamarine): New variable. Modified-by: Hilton Chain <hako@ultrarare.space> Signed-off-by: Hilton Chain <hako@ultrarare.space> Change-Id: Ibf62dd86d8dd336a4552d767dc0c235db5e57106 John Kehayias2024-12-081-0/+43
* gnu: Add hyprcursor.•••* gnu/packages/wm.scm (hyprcursor): New variable. Change-Id: I3e753cbaf75244adca65f0478cabd10c89af4286 Hilton Chain2024-12-081-0/+24
* gnu: Add hyprlang.•••* gnu/packages/wm.scm (hyprlang): New variable. Change-Id: Ie585412bd26bff2c5949ed3aef15c37f6958dc0b Hilton Chain2024-12-081-0/+23
* gnu: Add hyprland-protocols.•••* gnu/packages/wm.scm (hyprland-protocols): New variable. Change-Id: If986f2b5f8c0070807484e60431bb4c47f901edc Hilton Chain2024-12-081-0/+20
* gnu: Add hyprwayland-scanner.•••* gnu/packages/wm.scm (hyprwayland-scanner): New variable. Change-Id: I492006356e3abc68609d6c73738a0dfd3b15681c Hilton Chain2024-12-081-0/+25
* gnu: Add hyprutils.•••* gnu/packages/wm.scm (hyprutils): New variable. Modified-by: Hilton Chain <hako@ultrarare.space> Signed-off-by: Hilton Chain <hako@ultrarare.space> Change-Id: Ife120a7c2d66b7189a3116f8dbcb53be8dafd58e John Kehayias2024-12-081-0/+24
* gnu: Add udis86.•••* gnu/packages/engineering.scm (udis86): New variable. Change-Id: I95d6e1dc6dbd07812377633a3290eea9b8102456 Hilton Chain2024-12-081-0/+28
* gnu: aflplusplus: Update to 4.30c.•••* gnu/packages/debug.scm (aflplusplus): Update to 4.30c. Change-Id: Id7cbea11e53faf138e2d5691ff298a20ba6d63b0 Signed-off-by: Hilton Chain <hako@ultrarare.space> Nguyễn Gia Phong2024-12-081-2/+2
* gnu: make-gitolite: Fix inputs references.•••* gnu/packages/version-control.scm (make-gitolite)[#:phases] <patch-scripts,patch-source,wrap-scripts>: Use search-input-file. Change-Id: Ia2468235b43c257ee1816d19325671d373ed2870 Modified-by: Hilton Chain <hako@ultrarare.space> Signed-off-by: Hilton Chain <hako@ultrarare.space> Ashish SHUKLA2024-12-081-16/+29
* gnu: guile-emacs: Update to 8f87cbc1dae6a9e77368afc5736df8c342e9153d.•••* gnu/packages/patches/guile-emacs-build-fixes.patch: New file. * gnu/packages/patches/guile-emacs-fix-configure.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Update accordingly. * gnu/packages/emacs.scm (guile-emacs): Update to 8f87cbc1dae6a9e77368afc5736df8c342e9153d and use new patch. [arguments]: Allow parallel-build. Do not strip-binaries. Use recommended #:configure-flags and #:make-flags. Add stages "help-patch-progam-file-names" and "touch-lisp/finder-inf.el". No longer delete non-existent stage "strip-double-wrap". Delete stages "patch-compilation-driver", "set-libgccjit-path", "validate-comp-integrity", "restore-emacs-pdmp", "build-trampolines", and "install-site-start". [native-search-paths]: New field. Change-Id: I8153a55ef0061720ffd3c4833eff3ae6df3eccfc Janneke Nieuwenhuizen2024-12-084-226/+140
* gnu: guile-for-guile-emacs: Update to wip-elisp-rebased.•••* gnu/packages/guile.scm (guile-for-guile-emacs): Inherit from guile-next. Update to 4b9b8277733729f5b825f78fadfead9fc3630e7e. [version]: Update to 3.0.7-81. [arguments, native-inputs]: Remove. Change-Id: I78a53c2b45c4d2b87f560da82b400cbd985e332a Janneke Nieuwenhuizen2024-12-081-30/+5