aboutsummaryrefslogtreecommitdiff
path: root/gnu
AgeCommit message (Collapse)Author
2024-05-03gnu: gmnisrv: Fix config loading.Wojtek Kosior
* gnu/packages/web.scm (gmnisrv)[arguments]<#:phases>: Patch hostname handling in `src/config.c'. Change-Id: Ic79591eb45d63732d0d786a2c9994c60c9b84934
2024-05-03gnu: gmnisrv: Use Gexp.Wojtek Kosior
* gnu/packages/web.scm (gmnisrv)[arguments]: Use G-Expression. Change-Id: Ib8d9379e8b2a3940b8a5297622247a3c7a0454ca
2024-05-03services: ldap: Increase pid file timeout for 389-ds.Wojtek Kosior
* gnu/services/ldap.scm (directory-server-shepherd-service): Add `#:pid-file-timeout 30`. Change-Id: Ie7b3a7c7347b53d4e3629ef2de53c3a76f6751c0
2024-05-03services: ldap: Fix exported name.Wojtek Kosior
* gnu/services/ldap.scm (use-modules): Export `backend-userroot-configuration' instead of non-existent `backend-configuration'. Change-Id: I07c6d1c777bc42fa4afc3f23dc9d36080beb5bbc
2024-05-03home: services: Add localhost-repo-server.Wojtek Kosior
* gnu/home/services/vcs.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Record 'home/services/vcs.scm'. Change-Id: I37d3c1dacc26eb31b9b7ec434ed760c7cf84cc32
2024-05-03gnu: Add guile-cantius.Wojtek Kosior
* gnu/packages/guile-xyz.scm (guile-cantius): New variable. Change-Id: Iccc7385ae5c3f762f53705c8ebe876f7ad08da00
2024-05-03gnu: Add guile-de-paul-records.Wojtek Kosior
* gnu/packages/guile-xyz.scm (guile-de-paul-records): New variable. Change-Id: I869c65666f83aedec7a34809b66396798e62e2cf
2024-05-03gnu: Add guile-myra-test-utils.Wojtek Kosior
* gnu/packages/guile-xyz.scm (guile-myra-test-utils): New variable. Change-Id: I20ae86fa5fab953524786bffefa3cac9703128df
2024-05-03gnu: Add lawrence-bolierplate.Wojtek Kosior
* gnu/packages/autotools.scm (lawrence-boilerplate): New variable. Change-Id: Ib29e2ef3165ee151226ac4d4bc41ec5b51df8038
2024-05-03system: Allow adding elsewhere-defined system users to extra groups.Wojtek Kosior
* gnu/system.scm (define-module): Export `operating-system-extra-groups`. (<operating-system>)[extra-groups]: New field. (operating-system-default-essential-services): Also pass extra groups to account-service. (hurd-default-essential-services): Same here. * gnu/system/accounts.scm (define-module): Use (ice-9 vlist), (srfi srfi-8) and (srfi srfi-26). Export `user-extra-groups`* and `merge-extra-groups-data`. (<user-extra-groups>): New record type. (user-account-extend): New procedure. (merge-extra-groups-data): New procedure. * gnu/system/shadow.scm (define-module): Re-export `user-extra-groups`*. (account-service-type)[extend]: Handle <user-extra-groups> records, move field intializer upward to be able to use `compose`. Change-Id: I3f489ac794d342267b7627db1d28315ea4b69db2
2024-05-03services: Add overlayfs-service-type.Wojtek Kosior
The `overlayfs-service-type` allows overlay filesystems to be automatically mounted upon boot and reconfiguration. * gnu/services/overlayfs.scm: New file. * gnu/local.ml (GNU_SYSTEM_MODULES): Add it. Change-Id: I94bb3e3a29648faa354931f3c1cebc5947ab1d5c
2024-05-03services: certbot: Facilitate granting key read access to groups.W. Kosior
* gnu/services/certbot.scm (certificate-configuration)[key-read-group]: New field. (certbot-deploy-hook): Ensure requested group has the right access. (certbot-command): Pass the requested group to `certbot-deploy-hook'. (set-key-access-gexp): New procedure. (generate-certificate-gexp) Ensure the requested group has the right access. Change-Id: Ia46454a7d2b042cfb682d1d8a7e04aebbc9c19da
2024-05-03services: certbot: Allow it to be used without Nginx.Wojtek Kosior
* gnu/services/certbot.scm (define-module)[#:export]: Add `certbot-sans-nginx-service-type'. (certbot-configuration)[service-reload]: Add field. (certbot-configuration)[service-requirement]: Add field. (certbot-deploy-hook): Reload requested services rather than hardcoded Nginx. (certbot-command): Pass services to reload to `certbot-deploy-hook'. (certbot-renewal-one-shot): Pass depended services to Shepherd as configured instead of passing hardcoded Nginx. (certbot-sans-nginx-service-type): New variable. (certbot-service-type): Avoid code duplication by inheriting from the above service type. Change-Id: Ic833f24989bbcdcbbc273f9c8eae4c56992aafa0
2024-05-03services: Add snakeoil-service-type.Wojtek Kosior
The `snakeoil-service-type' generates self-issued certificates for use by various system daemons. * gnu/services/ca.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Change-Id: I57bbe51f43958c0f2f437d81645ce44f9a68470b
2024-05-03gnu: exim: Use /etc/exim.conf as the default config file.Wojtek Kosior
* gnu/packages/mail.scm (exim)[arguments]<#:phases>['symlink-config-file]: New phase. Change-Id: I1be49e4a042b42e38ebff8aeff0e9cfc8724456b
2024-05-03services: Support running Exim with setuid/setgid.Wojtek Kosior
In a typical configuration, Exim binary is setuid root and the Exim daemon process listens for connections under a non-root system account (usually `exim`). Upon receiving a message, it forks into a child process which re-executes the binary to regain privileges and deliver the mail to its destination (e.g. a Maildir inside user's home directory). Besides the setuid binary itself, such setup also requires the Exim configuration file to live at the path Exim considers safe. It defaults to /etc/exim.conf and changing it requires rebuilding the Exim daemon. If a configuration at unsafe path is used instead, Exim drops its privileges before reading it and becomes unable to perform certain kinds of email delivery. * gnu/services/mail.scm (<exim-configuration>)[setuid-user]: New field. (<exim-configuration>)[setgid-group]: New field. (exim-computed-config-file): Delete variable. (exim-shepherd-service)[start]: Use Exim's default config at /etc/exim.conf. (exim-activation): Atomically put Exim's current config at /etc/exim.conf and verify its syntactic correctness. (exim-setuids): New variable. (exim-service-type)[extensions]: Extend `setuid-program-service-type`. Change-Id: Ie6153baac80180d3d48f6b5a6959895df06aef0b
2024-05-03gnu: exim: Enable Maildir delivery format.Wojtek Kosior
* gnu/packages/mail.scm (exim)[arguments]<#:phases>['configure]: Set `SUPPORT_MAILDIR` config option to "yes". Change-Id: Ibb2b0bcd5b4a790eedfdc12f794a43625cb88250
2024-05-03gnu: exim: Set `exim` as the default user.Wojtek Kosior
* gnu/packages/mail.scm (exim)[arguments]<#:phases>['configure]: Configure Exim to resolve uid/gid of `exim` in runtime and prevent install script from failing. Change-Id: I2571d6e5a4d4aca534ed6bdfaa3832b1ec69c1d5
2024-05-03services: Allow cgit footer text to be passed as a file-like object.Wojtek Kosior
* gnu/services/cgit.scm (cgit-configuration)[footer]: Specify type as `file-object`. Change-Id: Id5790bbdb5e09204b653bc54e1b9b60afe5a2ee0
2024-05-03services: Export cgit config serialization procedure.Wojtek Kosior
This procedure alone is useful when deploying cgit under HTTP server other than Nginx or when deploying multiple cgit instances on a single host. * gnu/services/cgit.scm (define-module): Export `serialize-cgit-configuration`. Change-Id: Ia21c5debbd54a156df703d84694c945e851cd55c
2024-05-03gnu: pantalaimon: Fix media downloads.Wojtek Kosior
* gnu/packages/matrix.scm (pantalaimon)[arguments]: Patch incorrect function invokation that made downloads of attachments impossible
2024-05-02gnu: emacs-lsp-metals: Update to 1.2.0-1.01060e9.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-lsp-metals): Update to 1.2.0-1.01060e9. Change-Id: I6d396290aa0935a5c1cba91c95313df28c1c6949
2024-05-02gnu: dezyne: Update to 2.18.2.Janneke Nieuwenhuizen
* gnu/packages/dezyne.scm (dezyne)[version,source]: Update to 2.18.2. Change-Id: I604b4dc405c28a7ee711ae9f00106ab1b0685f9f
2024-05-01gnu: scilab: Improve package management robustness in scilab-cli.Nicolas Graves
* gnu/packages/maths.scm (scilab)[source]<origin>: Improve package management robustness in scilab-cli by allowing tbx_build_help to log the scilab mode incompatibility error and not process the rest of the function instead of failing with it. * gnu/packages/patches/scilab-tbx_build_help.patch : Add patch. * gnu/local.mk(dist_patch_DATA): Add gnu/packages/patches/scilab-tbx_build_help.patch. Change-Id: I8ee94afb4aba906cbc8c7ca67f4c89aa0cf55ae6 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2024-05-01gnu: scilab: Fixup and improve compilerDetection.sh script.Nicolas Graves
* gnu/packages/maths.scm (scilab) [arguments]<#:phases>: Fix compilerDetection.sh script in phase bootstrap-dynamic_link-scripts. [source]<origin>(patches): Add scilab-better-compiler-detection.patch. * gnu/packages/patches/scilab-better-compiler-detection.patch: Add file. * gnu/local.mk(dist_path_DATA): Add scilab-better-compiler-detection.patch. Change-Id: I7b1c78c4637fa1bc965eca8c516bf0b6cd4b92d1 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2024-05-01gnu: scilab: Cleanup.Nicolas Graves
* gnu/packages/maths.scm (scilab): [arguments]<#:phases>: In pre-build phase, remove unecessary code, due to the former introduction of the rewrap-scilab-cli phase. More robust version setting in the set-version phase. It anticipates for the next release which will not use "main" anymore. [source]<origin>(snippet) Sort dynamic_link deleted files. [inputs]: Add bash-minimal. Change-Id: I49b17886405e1ed8161e71b51655fa393ff7f10b Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2024-05-01gnu: xdot: Update to 1.3.Artyom V. Poptsov
* gnu/packages/graphviz.scm (xdot): Update to 1.3. [source]: Download the sources from GitHub as the PyPI tarbal is missing some test files. [arguments]: Use Gexps. Add "start-xserver" and "set-test-environment" to setup test environment properly. Simplify "wrap" phase. Replace "check" phase to run "test.py". [native-inputs]: Add "gobject-introspection" and "xorg-server-for-tests". [inputs]: Add "bash-minimal", "mesa", "mesa-opencl", "python-numpy" and "vulkan-loader". Change-Id: I7a68e9f5c1b66a6539b83623a457e16edacff012 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2024-05-01gnu: spirv-llvm-translator: Update to 18.1.0.John Kehayias
This fixes a build failure (after mesa-updates merge, perhaps from the spirv-headers update). The package version corresponds to the LLVM version targeted, so inputs needed to be updated. * gnu/packages/vulkan.scm (spirv-llvm-translator): Update to 18.1.0. [inputs]: Replace llvm-15 with llvm-18. [native-inputs]: Ditto. Replace clang-15 with clang-18. Change-Id: I8ad51dd019e508a14b479a7481de62cdae446425
2024-05-01gnu: guile-git: Update to 0.7.0.Ludovic Courtès
* gnu/packages/guile.scm (guile-git): Update to 0.7.0. Change-Id: I7a0a9d50a0f8a788963b05029a37ac9450ffa185
2024-05-01gnu: Add emacs-ob-asymptote.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-ob-asymptote): New variable. Change-Id: I022557ed6eb6473e26842a5e72d9abdd1d516d35
2024-05-01gnu: emacs-dockerfile-mode: Update to 1.9.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-dockerfile-mode): Update to 1.9. Change-Id: Ie3fd4d3701d720ece886b3e873b9637aeb468fea
2024-05-01gnu: emacs-polymode-ansible: Update to 0.4.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-polymode-ansible): Update to 0.4.0. [propagated-inputs]: Add EMACS-ANSIBLE. Change-Id: I1d15b309332f1bb82a0d515195eb2d1e8bd8cc34
2024-05-01gnu: Add emacs-ansible.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-ansible): New variable. Change-Id: Id8fc420fff4817faea14fcf8c115c13a64e49d32
2024-05-01gnu: emacs-org-fc: Update to 0.6.1.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-org-fc): Update to 0.6.1. Change-Id: Ib64456aa31d51bd3dea738ce895e4b8d5b56cbb0
2024-05-01gnu: emacs-org-contrib: Update to 0.5.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-org-contrib): Update to 0.5. Change-Id: Ib5f3f6ca30c3a5a72ce855db416c68b8d3e00aad
2024-05-01gnu: emacs-posframe: Update to 1.4.3.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-posframe): Update to 1.4.3. Change-Id: I806412d1e4115f22443d1d018fde9dfefd315417
2024-05-01gnu: emacs-vundo: Update to 2.3.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-vundo): Update to 2.3.0. Change-Id: I7a6847fa8d76d55ea4124a31c7f95d035304ff15
2024-05-01gnu: emacs-ement: Update to 0.15.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.15. Change-Id: Ie746965ddd693b232f7dce9c1562b84ac169f840
2024-05-01gnu: emacs-org-modern: Update to 1.2.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-org-modern): Update to 1.2. [synopsis]: Fix capitalization. [description]: Fix ambiguity between package and project name. Change-Id: I453db305d3bb529ca14414d3542dc8374c880403
2024-05-01gnu: firefox-decrypt: Update to 1.1.1.Oleg Pykhalov
* gnu/packages/gnuzilla.scm (firefox-decrypt)[version]: Update to 1.1.1. [arguments]<#:builder>: Update patch shebang substitute. Change-Id: Iceabe4883b103e2cde9eac808316986db97b760c
2024-05-01gnu: bats: Update to 1.11.0.Oleg Pykhalov
* gnu/packages/bash.scm (bats)[version]: Update to 1.11.0. [arguments]<#:builder>: Filter out symlinks in patch-shebang. Change-Id: I74405b99f91172c10b8c81caa0f3f46e1df4d74e
2024-05-01gnu: jc: Update to 1.25.2.Oleg Pykhalov
* gnu/packages/admin.scm (jc): Update to 1.25.2. Change-Id: I076bf285a6fd23ef65f6c094b355c5891c8b76e7
2024-05-01gnu: gource: Update to 0.54.Oleg Pykhalov
* gnu/packages/version-control.scm (gource)[version]: Update to 0.54. [arguments]<#:disallowed-references>: Add tzdata-for-tests. <#:phases>: Unbundle tinyxml. Set TZDIR environment variable. <#:configure-flags>: Add --with-tinyxml argument. [native-inputs]: Add tzdata-for-tests. [inputs]: Replace pcre with pcre2. Add tinyxml. Change-Id: I67c2a1ee74582ed3e0a4ec5e6d229c948f9d5265
2024-05-01gnu: bird: Update to 2.15.1.Oleg Pykhalov
* gnu/packages/networking.scm (bird): Update to 2.15.1. Change-Id: Ib30ee5eb503cbbafb066c13221d36059669f3dec
2024-04-30gnu: nickle: Update to 2.97.Eric Bavier
* gnu/packages/patches/nickle-man-release-date.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/patches/nickle-man-release-date.patch (nickle): Update to 2.97. [source]: Use patch. [native-inputs]: Remove field. [inputs]: Add readline. Change-Id: Id33d121e9eea9e3124b8891c60047b3943711ade
2024-04-30gnu: Remove linux-libre 6.7.Wilko Meyer
* gnu/packages/linux.scm (linux-libre-6.7-version, linux-libre-6.7-gnu-revision, deblob-scripts-6.7, linux-libre-6.7-pristine-source, linux-libre-6.7-source, linux-libre-headers-6.7, linux-libre-6.7): Remove variables. * gnu/packages/aux-files/linux-libre/6.7-arm.conf, gnu/packages/aux-files/linux-libre/6.7-arm64.conf, gnu/packages/aux-files/linux-libre/6.7-i686.conf, gnu/packages/aux-files/linux-libre/6.7-x86_64.conf: Delete files. * Makefile.am (AUX_FILES): Remove aforementioned .conf files. Change-Id: Ic69a65e1fbfa59d893e85d26950f33195ea9fbe1 Signed-off-by: Leo Famulari <leo@famulari.name>
2024-04-30gnu: Add psfex.Sharlatan Hellseher
* gnu/packages/astronomy.scm (psfex): New variable. Change-Id: I073df933b244811cd09343ea4951f481ad76b075
2024-04-30gnu: Add scamp.Sharlatan Hellseher
* gnu/packages/astronomy.scm (scamp): New variable. Change-Id: If32adb281017858b0e7d5816cecb509af3cec835
2024-04-30gnu: python-stsci-stimage: Adjust test steps.Sharlatan Hellseher
* gnu/packages/astronomy.scm (python-stsci-stimage): [arguments]: <#:test-flags>: Add them. <#:phases>: Fail over to default 'check phase and add 'waf-configure-build phase before check. [native-inputs]: Remove python-codecov and, python-pytest-cov. [description]: Fix indentation. Change-Id: I350c4ced2cb4afaff72d4d4941d198932cd888f5
2024-04-30gnu: python-stsci-stimage: Update to 0.2.8.Sharlatan Hellseher
* gnu/packages/astronomy.scm (python-stsci-stimage): Update to 0.2.8. Change-Id: Ib2f8b9544bc732959d87527d2c55f274dab4393b