guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: virglrenderer: Update to 0.10.4.


From: guix-commits
Subject: branch master updated: gnu: virglrenderer: Update to 0.10.4.
Date: Sat, 25 Feb 2023 15:04:43 -0500

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

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1dac5b2157 gnu: virglrenderer: Update to 0.10.4.
1dac5b2157 is described below

commit 1dac5b21579cacd8d4a74bea1e181e68d412e246
Author: Simon Streit <simon@netpanic.org>
AuthorDate: Thu Feb 2 22:01:00 2023 +0100

    gnu: virglrenderer: Update to 0.10.4.
    
    * gnu/packages/spice.scm (virglrenderer): Update to 0.10.4.
    [source]: Use git-fetch and update URI.
    [build-system] Change to meson-build-system.
    [inputs]: Remove eudev.
    [native-inputs]: Add python.
    [home-page]: Update URL.
    
    Co-authored-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/spice.scm | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index 8d2bed38b2..f492957fb2 100644
--- a/gnu/packages/spice.scm
+++ b/gnu/packages/spice.scm
@@ -56,6 +56,7 @@
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system meson)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix packages)
   #:use-module (guix gexp)
   #:use-module ((guix licenses) #:prefix license:)
@@ -87,22 +88,23 @@ different (virtual) machine than the one to which the USB 
device is attached.")
 (define-public virglrenderer
   (package
     (name "virglrenderer")
-    (version "0.7.0")
+    (version "0.10.4")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                "https://www.freedesktop.org/software/virgl/";
-                "virglrenderer-" version ".tar.bz2"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://gitlab.freedesktop.org/virgl/virglrenderer";)
+                    (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "041agg1d6i8hg250y30f08n3via0hs9rbijxdrfifb8ara805v0m"))))
-    (build-system gnu-build-system)
-    (inputs (list eudev libepoxy mesa))
-    (native-inputs (list pkg-config))
+                "06pwavrknyhghlxyh7ckq4scjx47v9fhy08r6pn194whzvzivmqg"))))
+    (build-system meson-build-system)
+    (inputs (list libepoxy mesa))
+    (native-inputs (list pkg-config python))
     (synopsis "Virtual 3D GPU library")
     (description "A virtual 3D GPU library that enables a virtualized operating
 system to use the host GPU to accelerate 3D rendering.")
-    (home-page "https://virgil3d.github.io";)
+    (home-page "https://gitlab.freedesktop.org/virgl/virglrenderer";)
     (license (list license:expat license:bsd-3))))
 
 (define-public spice-protocol



reply via email to

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