aboutsummaryrefslogtreecommitdiff
path: root/gnu.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2024-11-26 20:37:47 +0100
committerRicardo Wurmus <rekado@elephly.net>2024-12-03 16:59:51 +0100
commit527598ca24a669b82f7bac8fa896487036907868 (patch)
treeb281a61480bb03529e6959301867e54322bc44df /gnu.scm
parent4860cad2d6ba159f58fe830a718593ed9bde95ac (diff)
downloadguix-527598ca24a669b82f7bac8fa896487036907868.tar.gz
guix-527598ca24a669b82f7bac8fa896487036907868.zip
gnu: r-annotatr: Disable tests.
* gnu/packages/bioconductor.scm (r-annotatr)[arguments]: Disable tests. Change-Id: I819fe4bc651c39315ba6d42e34d36b505979003d
Diffstat (limited to 'gnu.scm')
0 files changed, 0 insertions, 0 deletions
ogram * gnu/installer/newt.scm (locale-page): Add #:dry-run? parameter. (keymap-page): Likewise. * gnu/installer/newt/keymap.scm (run-keymap-page): Likewise. * gnu/installer/steps.scm (run-installer-steps): Likewise. Use it to skip writing to socket. * gnu/installer/newt/final.scm (run-final-page): Rename to... (run-final-page-install): ...this. (dry-run-final-page, run-final-page): New procedures. * gnu/installer/parted.scm (bootloader-configuration): Cater for empty user partitions. * gnu/installer/utils.scm (dry-run-command): New procedure. * gnu/installer.scm (compute-locale-step): Add #:dry-run? parameter. Use it to avoid actually applying locale. (compute-keymap-step): Add dry-run? parameter. Pass it to keymap-page. (installer-program): Add #:dry-run? parameter. If #:true avoid writing to /proc, use dry-run-command, skip sync and reboot, and pass dry-run? to... (installer-steps): ...here. Add #:dry-run? parameter. Use it to disable skip network, substitutes, partitioning pages, and pass it to... compute-locale-step, compute-keymap-step, and final-page. Change-Id: I0ff4c3b0a0c69539af617c27ba37654beed44619 Janneke Nieuwenhuizen 2024-11-11installer: Use "partitioning-page" consistently....Having `partition-page' function call `RUN-partititionING-page' where all other proxy functions call `RUN-<name>' hurts my brain while refactoring. * gnu/installer/record.scm (<installer>)[partition-page]: Rename to... [partitioning-page]: ...this. * gnu/installer/newt.scm (partitioning-page, newt-installer): Update accordingly. * gnu/installer.scm (installer-steps): Update accordingly. Change-Id: I6b2f3459a3d0a7a89260224b7d8438676e3411ba Janneke Nieuwenhuizen