guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: gnucobol: Update to 3.1.2 [security fixes].


From: guix-commits
Subject: branch master updated: gnu: gnucobol: Update to 3.1.2 [security fixes].
Date: Wed, 10 Mar 2021 00:56:27 -0500

This is an automated email from the git hooks/post-receive script.

lle_bout pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 80739ea  gnu: gnucobol: Update to 3.1.2 [security fixes].
80739ea is described below

commit 80739ea480a7db667b83b45e3a08be740449f689
Author: Léo Le Bouter <lle-bout@zaclys.net>
AuthorDate: Wed Mar 10 06:54:48 2021 +0100

    gnu: gnucobol: Update to 3.1.2 [security fixes].
    
    * gnu/packages/cobol.scm (gnucobol): Update to 3.1.2.
    [arguments]: Add 'set-TERM phase before 'check to set the TERM environment
    variable for tests that expect it.
---
 gnu/packages/cobol.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/cobol.scm b/gnu/packages/cobol.scm
index 257527e..bc191e6 100644
--- a/gnu/packages/cobol.scm
+++ b/gnu/packages/cobol.scm
@@ -30,7 +30,7 @@
 (define-public gnucobol
   (package
     (name "gnucobol")
-    (version "2.2")
+    (version "3.1.2")
     (source
       (origin
         (method url-fetch)
@@ -39,7 +39,7 @@
                version ".tar.xz"))
         (sha256
          (base32
-          "1814s1n95xax2dz938cf4fkcp0q94nkj1gjbdblbzpk9q92zq66w"))))
+          "0x15ybfm63g7c9340fc6712h9v59spnbyaz4rf85pmnp3zbhaw2r"))))
     (arguments
      '(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
                                               (assoc-ref %outputs "out")
@@ -49,7 +49,10 @@
          (add-after 'unpack 'place-cobol85-test-suite
            (lambda* (#:key inputs #:allow-other-keys)
              (let ((newcob (assoc-ref inputs "newcob")))
-               (copy-file newcob "tests/cobol85/newcob.val.Z")))))
+               (copy-file newcob "tests/cobol85/newcob.val.Z"))))
+         (add-before 'check 'set-TERM
+           ;; Some tests expect a known terminal
+           (lambda _ (setenv "TERM" "xterm-256color"))))
        #:test-target "checkall"))
     (native-inputs
      `(("perl" ,perl)))



reply via email to

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