unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#71911] [PATCH] gnu: mesa: Update to 24.0.9.
@ 2024-07-03  6:47 guix-patches--- via
  2024-09-07  1:15 ` bug#71911: " John Kehayias via Guix-patches via
  0 siblings, 1 reply; 2+ messages in thread
From: guix-patches--- via @ 2024-07-03  6:47 UTC (permalink / raw)
  To: 71911; +Cc: Nguyễn Gia Phong

* gnu/packages/gl.scm (mesa): Update to 24.0.9.

Change-Id: I5b0cdf8a38557282377e1c3cecdfd0b3604cb122
---
I mainly want the new Xe KMD from 24.0.5.  24.0.9 built alright locally
and tests passed, but I haven't figured out how to test it in
guix system reconfigure.
 gnu/packages/gl.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 2100bb4872e4..1394e5787189 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -20,6 +20,7 @@
 ;;; Copyright © 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
 ;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
 ;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
+;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -297,7 +298,7 @@ (define libva-without-mesa
 (define-public mesa
   (package
     (name "mesa")
-    (version "24.0.4")
+    (version "24.0.9")
     (source
      (origin
        (method url-fetch)
@@ -306,8 +307,7 @@ (define-public mesa
                   (string-append "ftp://ftp.freedesktop.org/pub/mesa/"
                                  "mesa-" version ".tar.xz")))
        (sha256
-        (base32
-         "1w25lwdrb0ffrx2fjk9izbvpcgf9ypfc7v32zybwvjwql0qbvzlh"))))
+        (base32 "0k6ahbamq9icgznlc6a1mxmm3apgy74613wy39qkh3h6lin6iaji"))))
     (build-system meson-build-system)
     (propagated-inputs
      ;; The following are in the Requires.private field of gl.pc.

base-commit: 4b3a553ca5ba5ac190739309eb5f7aa8170cf2a8
-- 
2.45.2





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

* bug#71911: [PATCH] gnu: mesa: Update to 24.0.9.
  2024-07-03  6:47 [bug#71911] [PATCH] gnu: mesa: Update to 24.0.9 guix-patches--- via
@ 2024-09-07  1:15 ` John Kehayias via Guix-patches via
  0 siblings, 0 replies; 2+ messages in thread
From: John Kehayias via Guix-patches via @ 2024-09-07  1:15 UTC (permalink / raw)
  To: Nguyễn Gia Phong; +Cc: 71911-done

Hello,

On Wed, Jul 03, 2024 at 03:47 PM, Nguyễn Gia Phong wrote:

> * gnu/packages/gl.scm (mesa): Update to 24.0.9.
>
> Change-Id: I5b0cdf8a38557282377e1c3cecdfd0b3604cb122
> ---
> I mainly want the new Xe KMD from 24.0.5.  24.0.9 built alright locally
> and tests passed, but I haven't figured out how to test it in
> guix system reconfigure.

Apologies that I missed this when it was sent. I now have mesa 24.2.2 on
the mesa-updates branch. Substitutes are being built, but if you are on
x86_64 it is getting close already, if you want to pull from there.

Please follow up on https://issues.guix.gnu.org/73071 where I'm tracking
that set of changes.

Thanks!
John

>  gnu/packages/gl.scm | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
> index 2100bb4872e4..1394e5787189 100644
> --- a/gnu/packages/gl.scm
> +++ b/gnu/packages/gl.scm
> @@ -20,6 +20,7 @@
>  ;;; Copyright © 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
>  ;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
>  ;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
> +;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -297,7 +298,7 @@ (define libva-without-mesa
>  (define-public mesa
>    (package
>      (name "mesa")
> -    (version "24.0.4")
> +    (version "24.0.9")
>      (source
>       (origin
>         (method url-fetch)
> @@ -306,8 +307,7 @@ (define-public mesa
>                    (string-append "ftp://ftp.freedesktop.org/pub/mesa/"
>                                   "mesa-" version ".tar.xz")))
>         (sha256
> -        (base32
> -         "1w25lwdrb0ffrx2fjk9izbvpcgf9ypfc7v32zybwvjwql0qbvzlh"))))
> +        (base32 "0k6ahbamq9icgznlc6a1mxmm3apgy74613wy39qkh3h6lin6iaji"))))
>      (build-system meson-build-system)
>      (propagated-inputs
>       ;; The following are in the Requires.private field of gl.pc.
>
> base-commit: 4b3a553ca5ba5ac190739309eb5f7aa8170cf2a8





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

end of thread, other threads:[~2024-09-07  1:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-03  6:47 [bug#71911] [PATCH] gnu: mesa: Update to 24.0.9 guix-patches--- via
2024-09-07  1:15 ` bug#71911: " John Kehayias via Guix-patches via

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).