[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/197: installer: use ice-9 format everywhere.
From: |
Danny Milosavljevic |
Subject: |
06/197: installer: use ice-9 format everywhere. |
Date: |
Mon, 3 Jul 2017 20:36:50 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit f179cd619591e709c004279f9b01e1c311fb9a85
Author: John Darrington <address@hidden>
Date: Sat Dec 17 14:46:51 2016 +0100
installer: use ice-9 format everywhere.
* gnu/system/installer/disks.scm, gnu/system/installer/filesystems.scm,
gnu/system/installer/network.scm,
gnu/system/installer/partition-reader.scm:
Use module (ice-9 format)
---
gnu/system/installer/disks.scm | 2 +-
gnu/system/installer/filesystems.scm | 1 +
gnu/system/installer/network.scm | 1 +
gnu/system/installer/partition-reader.scm | 1 +
4 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/system/installer/disks.scm b/gnu/system/installer/disks.scm
index 155616d..e81101d 100644
--- a/gnu/system/installer/disks.scm
+++ b/gnu/system/installer/disks.scm
@@ -24,7 +24,7 @@
#:use-module (gurses menu)
#:use-module (gurses buttons)
#:use-module (ncurses curses)
-
+ #:use-module (ice-9 format)
#:export (make-disk-page))
(define (volumes)
diff --git a/gnu/system/installer/filesystems.scm
b/gnu/system/installer/filesystems.scm
index 0ca7dec..5bbe3ca 100644
--- a/gnu/system/installer/filesystems.scm
+++ b/gnu/system/installer/filesystems.scm
@@ -26,6 +26,7 @@
#:use-module (gurses buttons)
#:use-module (gurses menu)
#:use-module (ncurses curses)
+ #:use-module (ice-9 format)
#:use-module (srfi srfi-1)
#:export (filesystem-task-complete?)
diff --git a/gnu/system/installer/network.scm b/gnu/system/installer/network.scm
index f5cb7f4..ada4f28 100644
--- a/gnu/system/installer/network.scm
+++ b/gnu/system/installer/network.scm
@@ -21,6 +21,7 @@
#:use-module (gnu system installer ping)
#:use-module (gnu system installer misc)
#:use-module (gnu system installer utils)
+ #:use-module (ice-9 format)
#:use-module (ice-9 match)
#:use-module (gurses menu)
#:use-module (gurses buttons)
diff --git a/gnu/system/installer/partition-reader.scm
b/gnu/system/installer/partition-reader.scm
index f6d7d65..65c7107 100644
--- a/gnu/system/installer/partition-reader.scm
+++ b/gnu/system/installer/partition-reader.scm
@@ -42,6 +42,7 @@
#:use-module (ice-9 match)
#:use-module (ice-9 popen)
#:use-module (gnu system installer utils)
+ #:use-module (ice-9 format)
#:use-module (ice-9 regex)
#:use-module (srfi srfi-9))
- branch wip-installer-2 created (now ff63588), Danny Milosavljevic, 2017/07/03
- 04/197: installer: Fix broken timezone menu., Danny Milosavljevic, 2017/07/03
- 05/197: installer: fix warning in usage of "format"., Danny Milosavljevic, 2017/07/03
- 02/197: installer: Fix broken keymap change option., Danny Milosavljevic, 2017/07/03
- 07/197: installer: Use ice-9 match., Danny Milosavljevic, 2017/07/03
- 12/197: installer: Use call-with-temporary-output-file., Danny Milosavljevic, 2017/07/03
- 08/197: installer: Add IETF contraints for hostname in entry form., Danny Milosavljevic, 2017/07/03
- 06/197: installer: use ice-9 format everywhere.,
Danny Milosavljevic <=
- 11/197: installer: Change "interfaces" from a variable to a procedure., Danny Milosavljevic, 2017/07/03
- 16/197: installer: Add new procedure to get the list of volumes., Danny Milosavljevic, 2017/07/03
- 15/197: installer: Use %default-subsitute-urls instead of our own variable., Danny Milosavljevic, 2017/07/03
- 19/197: installer: Remove unused procedure., Danny Milosavljevic, 2017/07/03
- 18/197: installer: Handle the 'back' action in the filesystems task., Danny Milosavljevic, 2017/07/03
- 13/197: installer: Add alternate method of finding TZDIR., Danny Milosavljevic, 2017/07/03
- 31/197: installer: Make minumum-store-size variable global., Danny Milosavljevic, 2017/07/03
- 33/197: installer: Improve dependencies on the final task., Danny Milosavljevic, 2017/07/03
- 17/197: installer: Add completion predicate for disk task., Danny Milosavljevic, 2017/07/03
- 21/197: installer: Fix incorrect host in ping task., Danny Milosavljevic, 2017/07/03