guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: calcurse: Used the "fixed" test-only tzdata for tests.


From: Leo Famulari
Subject: 01/01: gnu: calcurse: Used the "fixed" test-only tzdata for tests.
Date: Wed, 25 Oct 2017 14:44:53 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit a23dbbff1491759924c027fde1f21f29586793a0
Author: Leo Famulari <address@hidden>
Date:   Tue Oct 24 16:10:49 2017 -0400

    gnu: calcurse: Used the "fixed" test-only tzdata for tests.
    
    * gnu/packages/calcurse.scm (calcurse)[inputs]: Remove tzdata and add ...
    [native-inputs]: tzdata-2017a.
    [arguments]: Add tzdata-2017a to #:disallowed-references.
---
 gnu/packages/calcurse.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/calcurse.scm b/gnu/packages/calcurse.scm
index 20a9a8f..826b1f1 100644
--- a/gnu/packages/calcurse.scm
+++ b/gnu/packages/calcurse.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014, 2015, 2017 Eric Bavier <address@hidden>
+;;; Copyright © 2014, 2015, 2017 Leo Famulari <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -38,13 +39,17 @@
        (base32
         "0il0y06akdqgy0f9p40m4x6arn66nh7sr1w1i41bszycs7div266"))))
     (build-system gnu-build-system)
-    (inputs `(("ncurses" ,ncurses)
-              ("tzdata" ,tzdata)))
+    (inputs `(("ncurses" ,ncurses)))
+    (native-inputs `(("tzdata" ,tzdata-2017a)))
     (arguments
      ;; The ical tests all want to create a ".calcurse" directory, and may
      ;; fail with "cannot create directory '.calcurse': File exists" if run
      ;; concurently.
-     '(#:parallel-tests? #f
+     `(#:parallel-tests? #f
+       ;; Since this tzdata is only used for tests and not referenced by the
+       ;; built package, used the "fixed" obsolete version of tzdata and ensure
+       ;; it does not sneak in to the closure.
+       #:disallowed-references (,tzdata-2017a)
        #:phases (modify-phases %standard-phases
                   (add-before 'check 'check-setup
                     (lambda* (#:key inputs #:allow-other-keys)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]