guix-commits
[Top][All Lists]
Advanced

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

04/06: gnu: libssh: Update to 0.9.3 [fixes CVE-2019-14889].


From: guix-commits
Subject: 04/06: gnu: libssh: Update to 0.9.3 [fixes CVE-2019-14889].
Date: Wed, 11 Dec 2019 16:38:54 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 2ecb5e7901ab9e826f8eb5ff21dbd84fb032c46f
Author: Marius Bakke <address@hidden>
Date:   Wed Dec 11 20:35:48 2019 +0100

    gnu: libssh: Update to 0.9.3 [fixes CVE-2019-14889].
    
    * gnu/packages/ssh.scm (libssh): Update to 0.9.3.
    [arguments]: Remove #:phases.
---
 gnu/packages/ssh.scm | 14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index b82d280..de33eff 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -71,7 +71,7 @@
 (define-public libssh
   (package
     (name "libssh")
-    (version "0.9.2")
+    (version "0.9.3")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -79,23 +79,13 @@
                      (commit (string-append "libssh-" version))))
               (sha256
                (base32
-                "14g4rvp91skn2hlsjyhkv58vhng65xrf34cfqffixa4al869hzgj"))
+                "175i3xybg69d5lb078334v6dd3njm743kww8f67ix9w33969rmzf"))
               (file-name (git-file-name name version))))
     (build-system cmake-build-system)
     (outputs '("out" "debug"))
     (arguments
      '(#:configure-flags '("-DWITH_GCRYPT=ON")
 
-       #:phases (modify-phases %standard-phases
-                  (add-before 'configure 'avoid-werror
-                    (lambda _
-                      ;; Avoid '-Werror'.  Presumably this works fine with
-                      ;; gcc@8 on x86_64 but leads to errors with our older
-                      ;; compiler.
-                      (substitute* "CompilerChecks.cmake"
-                        (("-Werror=") "-W"))
-                      #t)))
-
        ;; TODO: Add 'CMockery' and '-DWITH_TESTING=ON' for the test suite.
        #:tests? #f))
     (inputs `(("zlib" ,zlib)



reply via email to

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