guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: vlc: Update to 2.2.4 [fixes CVE-2016-5108].


From: Efraim Flashner
Subject: 01/01: gnu: vlc: Update to 2.2.4 [fixes CVE-2016-5108].
Date: Wed, 8 Jun 2016 14:12:08 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit a134cc8e93428bf6f309de54e5c944705d30418f
Author: Efraim Flashner <address@hidden>
Date:   Wed Jun 8 17:11:06 2016 +0300

    gnu: vlc: Update to 2.2.4 [fixes CVE-2016-5108].
    
    * gnu/packages/video.scm (vlc): Update to 2.2.4.
    [inputs]: Remove qt, add qtbase.
    [arguments]: Add phase to disable display test.
---
 gnu/packages/video.scm |   16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index eae7f64..692f364 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -559,15 +559,15 @@ audio/video codec library.")
 (define-public vlc
   (package
     (name "vlc")
-    (version "2.2.1")
+    (version "2.2.4")
     (source (origin
              (method url-fetch)
              (uri (string-append
-                   "http://download.videolan.org/pub/videolan/vlc/";
+                   "https://download.videolan.org/pub/videolan/vlc/";
                    version "/vlc-" version ".tar.xz"))
              (sha256
               (base32
-               "1jqzrzrpw6932lbkf863xk8cfmn4z2ngbxz7w8ggmh4f6xz9sgal"))
+               "1gjkrwlg8ab3skzl67cxb9qzg4187ifckd1z9kpy11q058fyjchn"))
              (modules '((guix build utils)))
              (snippet
               ;; There are two occurrences where __DATE__ and __TIME__ are
@@ -609,7 +609,8 @@ audio/video codec library.")
        ("perl" ,perl)
        ("pulseaudio" ,pulseaudio)
        ("python" ,python-wrapper)
-       ("qt" ,qt)
+       ("qtbase" ,qtbase)
+       ;("qtx11extras" ,qtx11extras)
        ("sdl" ,sdl)
        ("sdl-image" ,sdl-image)
        ("speex" ,speex)
@@ -623,6 +624,13 @@ audio/video codec library.")
 
        #:phases
        (modify-phases %standard-phases
+         (add-before 'configure 'remove-visual-tests
+           ;; Some of the tests require using the display to test out VLC,
+           ;; which fails in our sandboxed build system
+           (lambda _
+             (substitute* "test/run_vlc.sh"
+                          (("./vlc --ignore-config") "echo"))
+             #t))
          (add-after 'install 'regenerate-plugin-cache
            (lambda* (#:key outputs #:allow-other-keys)
              ;; The 'install-exec-hook' rule in the top-level Makefile.am



reply via email to

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