summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2016-07-02 15:49:34 +0200
committerMathieu Lirzin <mthl@gnu.org>2016-07-02 15:49:34 +0200
commit13db5aa618761282f79eed0a541fc800178a4513 (patch)
tree065dcb241b7e13d64932c3865735844944400ec1
parent7ae6ce069070582e42b669d6a1ecfde5e9b998ba (diff)
downloadcuirass-13db5aa618761282f79eed0a541fc800178a4513.tar
cuirass-13db5aa618761282f79eed0a541fc800178a4513.tar.gz
λ all the things!
-rw-r--r--bin/cuirass.in8
-rw-r--r--src/cuirass/base.scm2
-rw-r--r--src/cuirass/database.scm6
-rw-r--r--src/cuirass/utils.scm19
4 files changed, 17 insertions, 18 deletions
diff --git a/bin/cuirass.in b/bin/cuirass.in
index 84e3f18..4fd090c 100644
--- a/bin/cuirass.in
+++ b/bin/cuirass.in
@@ -86,7 +86,7 @@ if required."
(define (evaluate store db spec)
"Evaluate and build package derivations. Return a list a jobs."
(save-module-excursion
- (lambda ()
+ (λ ()
(set-current-module %user-module)
;; Handle both relative and absolute file names for SPEC-FILE.
(with-directory-excursion
@@ -108,7 +108,7 @@ if required."
(guix-variable 'store 'current-build-output-port))
(derivation-path->output-path
(guix-variable 'derivations 'derivation-path->output-path)))
- (map (lambda (job)
+ (map (λ (job)
(let ((log-port (tmpfile))
(name (job-name job))
(drv (job-derivation job)))
@@ -155,13 +155,13 @@ if required."
(let ((store ((guix-variable 'store 'open-connection))))
(dynamic-wind
(const #t)
- (lambda ()
+ (λ ()
(let ((jobs (evaluate store db spec))
(set-build-options
(guix-variable 'store 'set-build-options)))
(set-build-options store #:use-substitutes? #f)
(build-packages store db jobs)))
- (lambda ()
+ (λ ()
((guix-variable 'store 'close-connection) store)
(set! %load-path old-path))))))
specs)
diff --git a/src/cuirass/base.scm b/src/cuirass/base.scm
index c3fe733..941da0d 100644
--- a/src/cuirass/base.scm
+++ b/src/cuirass/base.scm
@@ -68,7 +68,7 @@ values."
(define (call-with-time-display thunk)
"Call THUNK and write to the current output port its duration."
(call-with-time thunk
- (lambda (time . results)
+ (λ (time . results)
(format #t "~,3f seconds~%"
(+ (time-second time)
(/ (time-nanosecond time) 1e9)))
diff --git a/src/cuirass/database.scm b/src/cuirass/database.scm
index 920b954..2ab5d32 100644
--- a/src/cuirass/database.scm
+++ b/src/cuirass/database.scm
@@ -119,10 +119,8 @@ database object."
(let ((db (db-init)))
(dynamic-wind
(const #t)
- (lambda ()
- body ...)
- (lambda ()
- (db-close db)))))
+ (λ () body ...)
+ (λ () (db-close db)))))
(define* (read-quoted-string #:optional port)
"Read all of the characters out of PORT and return them as a SQL quoted
diff --git a/src/cuirass/utils.scm b/src/cuirass/utils.scm
index 48c4b12..f1ddbf5 100644
--- a/src/cuirass/utils.scm
+++ b/src/cuirass/utils.scm
@@ -23,11 +23,15 @@
#:export (;; Procedures
mkdir-p
;; Macros.
+ λ*
with-directory-excursion))
+(define-syntax-rule (λ* formals body ...)
+ (lambda* formals body ...))
+
(define mkdir-p
(let ((not-slash (char-set-complement (char-set #\/))))
- (lambda* (dir #:optional mode)
+ (λ* (dir #:optional mode)
"Create directory DIR and all its ancestors."
(let ((absolute? (string-prefix? "/" dir)))
(let loop ((components (string-tokenize dir not-slash))
@@ -36,12 +40,12 @@
((head tail ...)
(let ((dir-name (string-append root "/" head)))
(catch 'system-error
- (lambda ()
+ (λ ()
(if mode
(mkdir dir-name mode)
(mkdir dir-name))
(loop tail dir-name))
- (lambda args
+ (λ args
;; On GNU/Hurd we can get EROFS instead of EEXIST here.
;; Thus, if we get something other than EEXIST, check
;; whether DIR-NAME exists. See
@@ -57,9 +61,6 @@
"Run BODY with DIR as the process's current directory."
(let ((init (getcwd)))
(dynamic-wind
- (lambda ()
- (chdir dir))
- (lambda ()
- body ...)
- (lambda ()
- (chdir init)))))
+ (λ () (chdir dir))
+ (λ () body ...)
+ (λ () (chdir init)))))