The tests/org-mode.scm tests expects 'jpl-outline-es' to be read as UTF-8. --- guile-present-0.3.0/tests/org-mode.scm 2014-09-23 22:29:51.426705753 +0200 +++ guile-present-0.3.0/tests/org-mode.scm 2014-09-23 22:30:09.634705548 +0200 @@ -194,9 +194,10 @@ "(Just another hacker)" "wingo@fluendo.com") (p "Julien Moutte, CEO" "julien@fluendo.com"))) + (with-fluids ((%default-port-encoding "UTF-8")) (call-with-input-file (in-vicinity *top-srcdir* "tests/jpl-outline-es") - org->presentation))) + org->presentation)))) (setlocale LC_ALL "") (exit-with-summary (run-all-defined-test-cases)) 068d5f06de2ea21407374c6'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/record.scm
AgeCommit message (Expand)Author
2022-02-02installer: Add installer-specific run command process....* gnu/installer/record.scm (installer)[run-command]: Add field. * gnu/installer/utils.scm (run-command-in-installer): Add parameter. * gnu/installer.scm (installer-program): Parameterize run-command-in-installer with current installer's run-command. * gnu/installer/newt.scm (newt-run-command): New variable. (newt-installer): Use it. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Josselin Poiret
2022-02-02installer: Add crash dump upload support....Suggested-by: Josselin Poiret <dev@jpoiret.xyz> * gnu/installer/dump.scm: New file. * gnu/installer/newt/dump.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * gnu/installer/record.scm (<installer>)[dump-page]: New field. * gnu/installer/steps.scm (%current-result): New variable. (run-installer-steps): Update it. * gnu/installer.scm (installer-program): Add tar and gip to the installer path. Add guile-webutils and gnutls to the Guile extensions. Generate and send the crash dump report. * gnu/installer/newt.scm (exit-error): Add a report argument. Display the report id. (dump-page): New procedure. (newt-installer): Update it. Mathieu Othacehe