aboutsummaryrefslogtreecommitdiff
path: root/tests/lint.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-11-20 20:51:48 +0200
committerEfraim Flashner <efraim@flashner.co.il>2024-11-28 11:05:33 +0200
commit03d2a67fb23e22e35e152454f5420caa4a7fd5e5 (patch)
treea4dc5dbcd0f13c257f0b2dd4bfee9b7f448fd763 /tests/lint.scm
parent0bfb31f57d7c67c3a6640502f880cf0b6eaf97f8 (diff)
downloadguix-03d2a67fb23e22e35e152454f5420caa4a7fd5e5.tar.gz
guix-03d2a67fb23e22e35e152454f5420caa4a7fd5e5.zip
gnu: rust-anstyle-wincon-3: Update to 3.0.6.
* gnu/packages/crates-windows.scm (rust-anstyle-wincon-3): Update to 3.0.6. [cargo-inputs]: Replace rust-windows-sys-0.52 with 0.59. Change-Id: I0667fb7a562a7d6a7936d80f93fe8e4c71fe4592
Diffstat (limited to 'tests/lint.scm')
0 files changed, 0 insertions, 0 deletions
scm: Remove test-expect-fail. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> 2023-02-08gnu: libjami: Move jamid daemon to a "bin" output.Maxim Cournoyer * gnu/packages/jami.scm (libjami) [outputs]: Add a "bin" output. [arguments]: Add a move-jamid phase. * gnu/services/telephony.scm (jami-configuration->command-line-arguments): Refer to the "bin" output of libjami. (jami-shepherd-services): Likewise. 2022-09-23services: jami-service-type: Streamline stop slot.Maxim Cournoyer * gnu/services/telephony.scm (jami-shepherd-services) [stop]: Use make-kill-destructor with SIGKILL. Add comment. 2022-08-25services: Use the new maybe/unset API.Attila Lendvai * gnu/home/services/ssh.scm (serialize-address-family): Use the public API of the maybe infrastructure. * gnu/services/file-sharing.scm (serialize-maybe-string): Use maybe-value. (serialize-maybe-file-object): Use maybe-value-set?. * gnu/services/getmail.scm (getmail-retriever-configuration): Don't use internals in unset field declarations. (getmail-destination-configuration): Ditto. * gnu/services/messaging.scm (raw-content?): Use maybe-value-set?. (prosody-configuration): Use %unset-value. * gnu/services/telephony.scm (jami-shepherd-services): Use maybe-value-set?. (archive-name->username): Use maybe-value-set?. * tests/services/configuration.scm ("maybe type, no default"): Use %unset-value. Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> 2022-08-01services: configuration: Step back from *unspecified*.Maxim Cournoyer Fixes <https://issues.guix.gnu.org/56799>. This partially reverts 8cb1a49a3998c39f315a4199b7d4a121a6d66449. Rationale: *unspecified* cannot be serialized thus used as a G-Expression input, which is problematic/inconvenient when using deeply nested records. As an example, jami-service-type was broken when using partially defined <jami-account> records. * gnu/services/configuration.scm (define-maybe-helper): Check against the 'unset symbol. (normalize-field-type+def): Adjust value to 'unset. (define-configuration-helper): Use 'unset as the default value thunk. * gnu/services/file-sharing.scm (serialize-maybe-string): Check against the 'unset symbol. (serialize-maybe-file-object): Likewise. * gnu/services/messaging.scm (define-all-configurations): Use 'unset as value. (raw-content?): Check against 'unset symbol. (prosody-configuration)[http-max-content-size]: Default to 'unset. [http-external-url]: Likewise. [mod-muc]: Likewise. [raw-content]: Likewise. * gnu/services/networking.scm (opendht-configuration): Adjust documentation. * gnu/services/telephony.scm (jami-shepherd-services): Replace *undefined* with the 'unset symbol. * tests/services/configuration.scm ("maybe type, no default"): Check against the 'unset symbol. * doc/guix.texi: Regenerate the opendht-configuration, openvpn-client-configuration and openvpn-server-configuration documentation.