aboutsummaryrefslogtreecommitdiff
path: root/.guix-channel
diff options
context:
space:
mode:
authorJohn Soo <jsoo1@asu.edu>2020-01-15 09:34:03 -0800
committerEfraim Flashner <efraim@flashner.co.il>2020-01-21 16:23:48 +0200
commit04020a73b3dea169f806d4f0d04cd2505d50efa1 (patch)
treef6c98fbe39d8b4b719d9078ef4fb658093fadfd2 /.guix-channel
parentb2f948be9f815582a49bd80a9594a881d7d1a56e (diff)
downloadguix-04020a73b3dea169f806d4f0d04cd2505d50efa1.tar.gz
guix-04020a73b3dea169f806d4f0d04cd2505d50efa1.zip
gnu: Add rust-handlebars-2.0.
* gnu/packages/crates-io.scm (rust-handlebars-2.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to '.guix-channel')
0 files changed, 0 insertions, 0 deletions
itle='2022-10-07 10:11:11 -0400'>2022-10-07marionette: Make marionette-screen-text private.Maxim Cournoyer It has only one user, which is better suited for wait-for-screen-text anyway. * gnu/tests/base.scm (run-basic-test): Refactor to use wait-for-screen-text instead of marionette-screen-text. 2022-09-16marionette: Avoid read error when wait-for-file file is empty.Christopher Baines Since #<eof> can't be read. * gnu/build/marionette.scm (wait-for-file): Return "" if file is empty. Partially-Fixes: https://issues.guix.gnu.org/57827 2022-09-16marionette: Make it easier to debug REPL read failures.Christopher Baines Log the remaining contnet written to the REPL, so that there's more to go on than: socket:5:14: Unknown # object: "#<" * gnu/build/marionette.scm (marionette-eval): Catch exceptions from read and log the remainder of the content from the REPL. 2022-08-28build: marionette: Add support for Tesseract OCR.Maxim Cournoyer * gnu/build/marionette.scm (invoke-ocrad-ocr): New procedure. (invoke-tesseract-ocr): Likewise. (marionette-screen-text): Rename the #:ocrad argument to #:ocr. Dispatch the matching OCR invocation procedure. (wait-for-screen-text): Rename the #:ocrad argument to #:ocr. * gnu/tests/base.scm (run-basic-test): Adjust accordingly. * gnu/tests/install.scm (enter-luks-passphrase): Likewise. (enter-luks-passphrase-for-home): Likewise. 2022-08-28marionette: Improve the error message of 'wait-for-screen-text'.Maxim Cournoyer * gnu/build/marionette.scm (wait-for-screen-text): Return the last OCR'd text when the predicate fails to match instead of the not useful predicate object. 2022-08-11build: marionette: Adjust QEMU Info manual reference.Maxim Cournoyer * gnu/build/marionette.scm (marionette-control): Update doc to correct the QEMU Info manual reference. 2022-08-09tests: Add qemu-guest-agent system test.Timotej Lazar Enable the QEMU guest agent interface in marionette VMs, run the qemu-guest-agent service in one and try talking to it. * gnu/build/marionette.scm (make-marionette): Enable the guest agent device. * gnu/tests/virtualization.scm (run-qemu-guest-agent-test): New procedure. (%test-qemu-guest-agent): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2022-05-22marionette: Add #:address parameter to 'wait-for-tcp-port'.Ludovic Courtès * gnu/build/marionette.scm (wait-for-tcp-port): Add #:address parameter. Honor it, and improve error reporting in the 'failure case.