all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67402] [PATCH 0/2] Update some spice packages
@ 2023-11-23 15:07 Ahmad Draidi via Guix-patches via
  2023-11-23 15:10 ` [bug#67402] [PATCH 1/2] gnu: virglrenderer: Update to 1.0.0 Ahmad Draidi via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2023-11-23 15:07 UTC (permalink / raw)
  To: 67402; +Cc: Ahmad Draidi

Just update a couple of spice packages.

Ahmad Draidi (2):
  gnu: virglrenderer: Update to 1.0.0.
  gnu: spice: Update to 0.15.2.

 gnu/packages/spice.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)


base-commit: b150c546b04c9ebb09de9f2c39789221054f5eea
-- 
2.41.0





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#67402] [PATCH 1/2] gnu: virglrenderer: Update to 1.0.0.
  2023-11-23 15:07 [bug#67402] [PATCH 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
@ 2023-11-23 15:10 ` Ahmad Draidi via Guix-patches via
  2023-11-23 15:10 ` [bug#67402] [PATCH 2/2] gnu: spice: Update to 0.15.2 Ahmad Draidi via Guix-patches via
  2024-02-17 15:57 ` [bug#67402] [PATCH v2 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2023-11-23 15:10 UTC (permalink / raw)
  To: 67402; +Cc: Ahmad Draidi

* gnu/packages/spice.scm (virglrenderer): Update to 1.0.0.
[source]: Update URI to avoid redirect.

Change-Id: I4374d2769c57abcf741e383a5d5a860d2a51edf8
---
 gnu/packages/spice.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index d0cef54c1d..c5f1b2c4ab 100644
--- a/gnu/packages/spice.scm
+++ b/gnu/packages/spice.scm
@@ -90,16 +90,16 @@ (define-public usbredir
 (define-public virglrenderer
   (package
     (name "virglrenderer")
-    (version "0.10.4")
+    (version "1.0.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://gitlab.freedesktop.org/virgl/virglrenderer")
+                    (url "https://gitlab.freedesktop.org/virgl/virglrenderer.git")
                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "06pwavrknyhghlxyh7ckq4scjx47v9fhy08r6pn194whzvzivmqg"))))
+                "1zm6f5cqf71wdfhxi8n3qiijmzdr00jvz5pfcdvfz4rlmmrhv0aa"))))
     (build-system meson-build-system)
     (inputs (list libepoxy mesa))
     (native-inputs (list pkg-config python))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#67402] [PATCH 2/2] gnu: spice: Update to 0.15.2.
  2023-11-23 15:07 [bug#67402] [PATCH 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
  2023-11-23 15:10 ` [bug#67402] [PATCH 1/2] gnu: virglrenderer: Update to 1.0.0 Ahmad Draidi via Guix-patches via
@ 2023-11-23 15:10 ` Ahmad Draidi via Guix-patches via
  2024-02-17 15:57 ` [bug#67402] [PATCH v2 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2023-11-23 15:10 UTC (permalink / raw)
  To: 67402; +Cc: Ahmad Draidi

* gnu/packages/spice.scm (spice): Update to 0.15.2.

Change-Id: I93ce769e2da93528b60e19ee567e283cfb579ffc
---
 gnu/packages/spice.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index c5f1b2c4ab..7a22588784 100644
--- a/gnu/packages/spice.scm
+++ b/gnu/packages/spice.scm
@@ -230,7 +230,7 @@ (define-public spice-gtk
 (define-public spice
   (package
     (name "spice")
-    (version "0.15.1")
+    (version "0.15.2")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -238,7 +238,7 @@ (define-public spice
                 "spice-server/spice-" version ".tar.bz2"))
               (sha256
                (base32
-                "0ym3n60gq0kzzknk5ir8ib09cxsak9hkv7mmgsyic69jmdkszadd"))))
+                "10av05vk60jzqjhqbsw5zdwqmx6gpr50045wqiqp9483gw8vd7kd"))))
     (build-system gnu-build-system)
     (propagated-inputs
       (list openssl-1.1 pixman spice-protocol))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#67402] [PATCH v2 0/2] Update some spice packages
  2023-11-23 15:07 [bug#67402] [PATCH 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
  2023-11-23 15:10 ` [bug#67402] [PATCH 1/2] gnu: virglrenderer: Update to 1.0.0 Ahmad Draidi via Guix-patches via
  2023-11-23 15:10 ` [bug#67402] [PATCH 2/2] gnu: spice: Update to 0.15.2 Ahmad Draidi via Guix-patches via
@ 2024-02-17 15:57 ` Ahmad Draidi via Guix-patches via
  2024-02-17 15:59   ` [bug#67402] [PATCH v2 1/2] gnu: virglrenderer: Update to 1.0.1 Ahmad Draidi via Guix-patches via
                     ` (2 more replies)
  2 siblings, 3 replies; 7+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2024-02-17 15:57 UTC (permalink / raw)
  To: 67402; +Cc: Ahmad Draidi

v2: Update virglrenderer to latest release.

Ahmad Draidi (2):
  gnu: virglrenderer: Update to 1.0.1.
  gnu: spice: Update to 0.15.2.

 gnu/packages/spice.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)


base-commit: 3cf199dbcf85a44fa8370e786e568fc3feb7067c
-- 
2.41.0





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#67402] [PATCH v2 1/2] gnu: virglrenderer: Update to 1.0.1.
  2024-02-17 15:57 ` [bug#67402] [PATCH v2 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
@ 2024-02-17 15:59   ` Ahmad Draidi via Guix-patches via
  2024-02-17 15:59   ` [bug#67402] [PATCH v2 2/2] gnu: spice: Update to 0.15.2 Ahmad Draidi via Guix-patches via
  2024-02-22 19:50   ` [bug#67402] [PATCH v2 0/2] Update some spice packages Nicolas Goaziou via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2024-02-17 15:59 UTC (permalink / raw)
  To: 67402; +Cc: Ahmad Draidi

* gnu/packages/spice.scm (virglrenderer): Update to 1.0.1.
[source]: Update URI to avoid redirect.

Change-Id: I0b132a62b6cc312da857796ce5242a5b7ff475d6
---
v2: Update to latest release since the patch is not merged yet.

 gnu/packages/spice.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index d0cef54c1d..7aa1022eb6 100644
--- a/gnu/packages/spice.scm
+++ b/gnu/packages/spice.scm
@@ -90,16 +90,16 @@ (define-public usbredir
 (define-public virglrenderer
   (package
     (name "virglrenderer")
-    (version "0.10.4")
+    (version "1.0.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://gitlab.freedesktop.org/virgl/virglrenderer")
+                    (url "https://gitlab.freedesktop.org/virgl/virglrenderer.git")
                     (commit version)))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "06pwavrknyhghlxyh7ckq4scjx47v9fhy08r6pn194whzvzivmqg"))))
+                "0xw2qk8557gqpm1ssgk3ccshgljm6sh3wbbwpsp9cl0h4hdf2wq2"))))
     (build-system meson-build-system)
     (inputs (list libepoxy mesa))
     (native-inputs (list pkg-config python))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#67402] [PATCH v2 2/2] gnu: spice: Update to 0.15.2.
  2024-02-17 15:57 ` [bug#67402] [PATCH v2 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
  2024-02-17 15:59   ` [bug#67402] [PATCH v2 1/2] gnu: virglrenderer: Update to 1.0.1 Ahmad Draidi via Guix-patches via
@ 2024-02-17 15:59   ` Ahmad Draidi via Guix-patches via
  2024-02-22 19:50   ` [bug#67402] [PATCH v2 0/2] Update some spice packages Nicolas Goaziou via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2024-02-17 15:59 UTC (permalink / raw)
  To: 67402; +Cc: Ahmad Draidi

* gnu/packages/spice.scm (spice): Update to 0.15.2.

Change-Id: I0f79980dab53f5d65c1efa95e4221811247beaa3
---
v2: Rebase. Nothing else.

 gnu/packages/spice.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index 7aa1022eb6..860b77cf5d 100644
--- a/gnu/packages/spice.scm
+++ b/gnu/packages/spice.scm
@@ -230,7 +230,7 @@ (define-public spice-gtk
 (define-public spice
   (package
     (name "spice")
-    (version "0.15.1")
+    (version "0.15.2")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -238,7 +238,7 @@ (define-public spice
                 "spice-server/spice-" version ".tar.bz2"))
               (sha256
                (base32
-                "0ym3n60gq0kzzknk5ir8ib09cxsak9hkv7mmgsyic69jmdkszadd"))))
+                "10av05vk60jzqjhqbsw5zdwqmx6gpr50045wqiqp9483gw8vd7kd"))))
     (build-system gnu-build-system)
     (propagated-inputs
       (list openssl-1.1 pixman spice-protocol))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#67402] [PATCH v2 0/2] Update some spice packages
  2024-02-17 15:57 ` [bug#67402] [PATCH v2 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
  2024-02-17 15:59   ` [bug#67402] [PATCH v2 1/2] gnu: virglrenderer: Update to 1.0.1 Ahmad Draidi via Guix-patches via
  2024-02-17 15:59   ` [bug#67402] [PATCH v2 2/2] gnu: spice: Update to 0.15.2 Ahmad Draidi via Guix-patches via
@ 2024-02-22 19:50   ` Nicolas Goaziou via Guix-patches via
  2 siblings, 0 replies; 7+ messages in thread
From: Nicolas Goaziou via Guix-patches via @ 2024-02-22 19:50 UTC (permalink / raw)
  To: 67402; +Cc: Ahmad Draidi, 67402-done

Hello,

Ahmad Draidi via Guix-patches via <guix-patches@gnu.org> writes:

> Ahmad Draidi (2):
>   gnu: virglrenderer: Update to 1.0.1.
>   gnu: spice: Update to 0.15.2.

Applied. Thank you!

Regards,
-- 
Nicolas Goaziou






^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-02-22 19:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-23 15:07 [bug#67402] [PATCH 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
2023-11-23 15:10 ` [bug#67402] [PATCH 1/2] gnu: virglrenderer: Update to 1.0.0 Ahmad Draidi via Guix-patches via
2023-11-23 15:10 ` [bug#67402] [PATCH 2/2] gnu: spice: Update to 0.15.2 Ahmad Draidi via Guix-patches via
2024-02-17 15:57 ` [bug#67402] [PATCH v2 0/2] Update some spice packages Ahmad Draidi via Guix-patches via
2024-02-17 15:59   ` [bug#67402] [PATCH v2 1/2] gnu: virglrenderer: Update to 1.0.1 Ahmad Draidi via Guix-patches via
2024-02-17 15:59   ` [bug#67402] [PATCH v2 2/2] gnu: spice: Update to 0.15.2 Ahmad Draidi via Guix-patches via
2024-02-22 19:50   ` [bug#67402] [PATCH v2 0/2] Update some spice packages Nicolas Goaziou via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.