guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: libdrm: Update to 2.4.107.


From: guix-commits
Subject: 01/02: gnu: libdrm: Update to 2.4.107.
Date: Sat, 31 Jul 2021 06:34:11 -0400 (EDT)

civodul pushed a commit to branch core-updates-frozen
in repository guix.

commit 554e09254c3b8ab68e96843d2de79db19fabfbce
Author: Kaelyn Takata <kaelyn.alexi@protonmail.com>
AuthorDate: Tue Jul 13 16:57:48 2021 +0000

    gnu: libdrm: Update to 2.4.107.
    
    * gnu/packages/xdisorg.scm (libdrm): Update to 2.4.107, and change
    libpciaccess to a propagated input as the pkg-config for libdrm_intel now
    includes it in the libs.
    [arguments]: Add conditional testing support to the replacement for the
    standard check phase.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/xdisorg.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index d13392a..6963cad 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -638,7 +638,7 @@ rasterisation.")
 (define-public libdrm
   (package
     (name "libdrm")
-    (version "2.4.104")
+    (version "2.4.107")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -646,7 +646,7 @@ rasterisation.")
                     version ".tar.xz"))
               (sha256
                (base32
-                "1jqvx9c23hgwhq109zqj6vg3ng40pcvh3r1k2fn1a424qasxhsnn"))))
+                "127qf1rzhaf13vdd75a58v5q34617hvangjlfnlkcdh37gqcwm65"))))
     (build-system meson-build-system)
     (arguments
      `(#:configure-flags
@@ -661,9 +661,10 @@ rasterisation.")
 
        #:phases (modify-phases %standard-phases
                   (replace 'check
-                    (lambda _
-                      (invoke "meson" "test" "--timeout-multiplier" "5"))))))
-    (inputs
+                    (lambda* (#:key tests? #:allow-other-keys)
+                      (when tests?
+                        (invoke "meson" "test" "--timeout-multiplier" 
"5")))))))
+    (propagated-inputs
      `(("libpciaccess" ,libpciaccess)))
     (native-inputs
      `(("pkg-config" ,pkg-config)))



reply via email to

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