diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2020-07-25 18:26:18 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2020-07-25 19:11:37 +0200 |
| commit | d51bfe242fbe6f3f8f71d723e8fe0c7bbe711ba1 (patch) | |
| tree | 6d8519ba2ab3e5475ff44dfa3a1c2aa9ec8a50b9 /gnu/packages.scm | |
| parent | 252a1926bc7d7aa0b39d89a484c0c1b82e945fcd (diff) | |
Use 'formatted-message' instead of '&message' where appropriate.
* gnu.scm (%try-use-modules): Use 'formatted-message' instead of
'&message'.
* gnu/machine/digital-ocean.scm (maybe-raise-unsupported-configuration-error):
Likewise.
* gnu/machine/ssh.scm (machine-check-file-system-availability): Likewise.
(machine-check-building-for-appropriate-system): Likewise.
(deploy-managed-host): Likewise.
(maybe-raise-unsupported-configuration-error): Likewise.
* gnu/packages.scm (search-patch): Likewise.
* gnu/services.scm (%service-with-default-value): Likewise.
(files->etc-directory): Likewise.
(fold-services): Likewise.
* gnu/system.scm (locale-name->definition*): Likewise.
* gnu/system/mapped-devices.scm (check-device-initrd-modules): Likewise.
(check-luks-device): Likewise.
* guix/channels.scm (latest-channel-instance): Likewise.
* guix/cve.scm (json->cve-items): Likewise.
* guix/git-authenticate.scm (commit-signing-key): Likewise.
(commit-authorized-keys): Likewise.
(authenticate-commit): Likewise.
(verify-introductory-commit): Likewise.
* guix/remote.scm (remote-pipe-for-gexp): Likewise.
* guix/scripts/graph.scm (assert-package): Likewise.
* guix/scripts/offload.scm (private-key-from-file*): Likewise.
* guix/ssh.scm (authenticate-server*): Likewise.
(open-ssh-session): Likewise.
(remote-inferior): Likewise.
* guix/ui.scm (matching-generations): Likewise.
* guix/upstream.scm (package-update): Likewise.
* tests/channels.scm ("latest-channel-instances, missing introduction for 'guix'"):
Catch 'formatted-message?'.
("authenticate-channel, wrong first commit signer"): Likewise.
* tests/lint.scm ("patches: not found"): Adjust message string.
* tests/packages.scm ("patch not found yields a run-time error"): Catch
'formatted-message?'.
* guix/lint.scm (check-patch-file-names): Handle 'formatted-message?'.
(check-derivation): Ditto.
Diffstat (limited to 'gnu/packages.scm')
| -rw-r--r-- | gnu/packages.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages.scm b/gnu/packages.scm index d22c992bb1f..4e4282645ad 100644 --- a/gnu/packages.scm +++ b/gnu/packages.scm | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #:use-module (guix packages) | 24 | #:use-module (guix packages) |
| 25 | #:use-module (guix ui) | 25 | #:use-module (guix ui) |
| 26 | #:use-module (guix utils) | 26 | #:use-module (guix utils) |
| 27 | #:use-module (guix diagnostics) | ||
| 27 | #:use-module (guix discovery) | 28 | #:use-module (guix discovery) |
| 28 | #:use-module (guix memoization) | 29 | #:use-module (guix memoization) |
| 29 | #:use-module ((guix build utils) | 30 | #:use-module ((guix build utils) |
| @@ -92,9 +93,8 @@ | |||
| 92 | (define (search-patch file-name) | 93 | (define (search-patch file-name) |
| 93 | "Search the patch FILE-NAME. Raise an error if not found." | 94 | "Search the patch FILE-NAME. Raise an error if not found." |
| 94 | (or (search-path (%patch-path) file-name) | 95 | (or (search-path (%patch-path) file-name) |
| 95 | (raise (condition | 96 | (raise (formatted-message (G_ "~a: patch not found") |
| 96 | (&message (message (format #f (G_ "~a: patch not found") | 97 | file-name)))) |
| 97 | file-name))))))) | ||
| 98 | 98 | ||
| 99 | (define-syntax-rule (search-patches file-name ...) | 99 | (define-syntax-rule (search-patches file-name ...) |
| 100 | "Return the list of absolute file names corresponding to each | 100 | "Return the list of absolute file names corresponding to each |
