cache: Work around 'time-monotonic' bug in Guile 2.2.2.
authorLudovic Courtès <ludo@gnu.org>
Sat, 22 Apr 2017 12:40:51 +0000 (14:40 +0200)
committerLudovic Courtès <ludo@gnu.org>
Sat, 22 Apr 2017 12:42:15 +0000 (14:42 +0200)
* guix/cache.scm (time-monotonic) [guile-2.2]: New variable.
* tests/cache.scm (time-monotonic) [guile-2.2]: Likewise.
* guix/build/download.scm (time-monotonic) [guile-2.2]: Adjust comment:
it's a 2.2.2 bug.

guix/build/download.scm
guix/cache.scm
tests/cache.scm

index 6563341..67a8952 100644 (file)
@@ -142,9 +142,8 @@ Otherwise return STORE-PATH."
 
 (cond-expand
   (guile-2.2
-   ;; Guile 2.2.0 to 2.2.2 included has a bug whereby 'time-monotonic' objects
-   ;; have seconds and nanoseconds swapped (fixed in Guile commit 886ac3e).
-   ;; Work around it.
+   ;; Guile 2.2.2 has a bug whereby 'time-monotonic' objects have seconds and
+   ;; nanoseconds swapped (fixed in Guile commit 886ac3e).  Work around it.
    (define time-monotonic time-tai))
   (else #t))
 
index 077b078..1dc0083 100644 (file)
 ;;;
 ;;; Code:
 
+(cond-expand
+  (guile-2.2
+   ;; Guile 2.2.2 has a bug whereby 'time-monotonic' objects have seconds and
+   ;; nanoseconds swapped (fixed in Guile commit 886ac3e).  Work around it.
+   (define time-monotonic time-tai))
+  (else #t))
+
 (define (obsolete? date now ttl)
   "Return #t if DATE is obsolete compared to NOW + TTL seconds."
   (time>? (subtract-duration now (make-time time-duration 0 ttl))
index 0e1e08b..e46cdd8 100644 (file)
   #:use-module ((guix utils) #:select (call-with-temporary-directory))
   #:use-module (ice-9 match))
 
+(cond-expand
+  (guile-2.2
+   ;; Guile 2.2.2 has a bug whereby 'time-monotonic' objects have seconds and
+   ;; nanoseconds swapped (fixed in Guile commit 886ac3e).  Work around it.
+   (define time-monotonic time-tai))
+  (else #t))
+
 (test-begin "cache")
 
 (test-equal "remove-expired-cache-entries"