aboutsummaryrefslogtreecommitdiff
path: root/gnu/bootloader.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2023-11-12 14:06:18 +0000
committerChristopher Baines <mail@cbaines.net>2023-11-12 14:06:18 +0000
commit7001e85b7544db56297c9d4fb65cb7ce44897048 (patch)
tree6852ddaeea3721c54b157937b53e8f26c88a9b75 /gnu/bootloader.scm
parent09b19cf8dabdcfeb7a79b0d69c46febf68a53639 (diff)
downloadguix-7001e85b7544db56297c9d4fb65cb7ce44897048.tar.gz
guix-7001e85b7544db56297c9d4fb65cb7ce44897048.zip
gnu: guile-prometheus: Update to 0-6.4aaf902.
* gnu/packages/guile-xyz.scm (guile-prometheus): Update to 0-6.4aaf902. Change-Id: I98f72712d63ad5f14678bd6979d8bc4cf1f52e99
Diffstat (limited to 'gnu/bootloader.scm')
0 files changed, 0 insertions, 0 deletions
/tr> 2020-03-19inferior: '&inferior-exception' includes a stack trace....* guix/inferior.scm (port->inferior): Bump protocol to (0 1 1). (&inferior-exception)[stack]: New field. (read-repl-response): Recognize 'exception' form for protocol (0 1 1). * tests/inferior.scm ("&inferior-exception"): Check the value returned by 'inferior-exception-stack'. Ludovic Courtès 2020-03-17tests: Fix up reference to 'guile-2.2'....This is a followup to b6bee63bed4f013064c0d902e7c8b83ed7514ade. * tests/inferior.scm ("inferior-package-search-paths"): Refer to 'guile-3.0' instead of 'guile-2.2'. Ludovic Courtès 2020-03-12inferior: Distinguish inferior exceptions....This avoids ambiguities when looking at a backtrace where the exception was actually thrown by an inferior in a very different context. * guix/inferior.scm (&inferior-exception): New condition type. (read-repl-response): Add optional 'inferior' parameter. Raise '&inferior-exception' instead of rethrowing to KEY when receiving an 'exception' message. (read-inferior-response): Pass INFERIOR to 'read-repl-response'. * tests/inferior.scm ("&inferior-exception"): New test. Ludovic Courtès 2019-09-21inferior: Propagate '&store-protocol-error' error conditions....Until now '&store-protocol-error' conditions raised in the inferior would not be correctly propagated because SRFI-35 records lack a read syntax. Reported at <https://bugs.gnu.org/37449> by Carl Dong <contact@carldong.me>. * guix/inferior.scm (port->inferior): Import (srfi srfi-34) in the inferior. (inferior-eval-with-store): Define 'error?' and 'error-message'. Wrap call to PROC in 'guard'. Check the response of INFERIOR for a 'store-protocol-error' or a 'result' tag. * tests/inferior.scm ("inferior-eval-with-store, &store-protocol-error"): New test. Ludovic Courtès