aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/xorg.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2020-10-18 09:31:15 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2020-10-18 11:58:03 -0400
commit9e3a5ee417ea7fe9721be8804ff047e80c4f22ed (patch)
tree704b0ebc8fd2a883e1868e72f9aa4cee93822fd7 /gnu/packages/xorg.scm
parentd238188969b2ee827d966e79901a6b1fa364cd56 (diff)
downloadguix-9e3a5ee417ea7fe9721be8804ff047e80c4f22ed.tar.gz
guix-9e3a5ee417ea7fe9721be8804ff047e80c4f22ed.zip
gnu: python-babel: Reinstate previously failing tests.
* gnu/packages/python-xyz.scm (python-babel)[arguments]: Remove field. [home-page]: Use HTTPS.
Diffstat (limited to 'gnu/packages/xorg.scm')
0 files changed, 0 insertions, 0 deletions
Bruno Victal 2022-11-02gnu: dovecot: Use standard mkdir-p/perms....* gnu/services/mail.scm (%dovecot-activation): Use (gnu build utils). Julien Lepiller 2022-08-01services: opensmtpd: Make commands setgid to "smtpq" by default....This is a patch that fixes "<executable name>: this program must be setgid smtpq". * gnu/services/mail.scm (<opensmtpd-configuration>)[setgid-commands?]: New field. (opensmtpd-set-gids): New procedure. (opensmtpd-service-type)[extensions]: Add SETUID-PROGRAM-SERVICE-TYPE extension. * doc/guix.texi (Mail Services): Document it. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Maya 2022-06-24services: configuration: Remove 'validate-configuration'....Now that configuration records use the 'sanitize' property for each field, 'validate-configuration' has become useless because it's impossible to construct an invalid configuration record. * gnu/services/configuration.scm (validate-configuration): Remove. * gnu/services/mail.scm (dovecot-service): Remove call. * gnu/services/vpn.scm (openvpn-client-service) (openvpn-server-service): Likewise. * doc/guix.texi (Complex Configurations): Remove documentation. Ludovic Courtès 2022-06-24services: configuration: Report the location of field type errors....Previously field type errors would be reported in a non-standard way, and without any source location information. This fixes it. * gnu/services/configuration.scm (configuration-field-error): Add a 'loc' parameter and honor it. Use 'formatted-message' instead of plain 'format'. (define-configuration-helper)[field-sanitizer]: New procedure. Use it. Use STEM as the identifier of the syntactic constructor of the record type. Add a 'sanitize' property to each field. Remove now useless STEM macro that would call 'validate-configuration'. * gnu/services/mail.scm (serialize-listener-configuration): Adjust to new 'configuration-field-error' prototype. * tests/services/configuration.scm ("wrong type for a field"): New test. * po/guix/POTFILES.in: Add gnu/services/configuration.scm. Ludovic Courtès