[PATCH] gnu: mesa: Fix VDPAU drivers path.

  • Done
  • quality assurance status badge
Details
2 participants
  • Guillaume Le Vaillant
  • John Kehayias
Owner
unassigned
Submitted by
Guillaume Le Vaillant
Severity
normal
G
G
Guillaume Le Vaillant wrote on 13 Jun 2023 15:10
(address . guix-patches@gnu.org)(name . Guillaume Le Vaillant)(address . glv@posteo.net)
f687c86ace5c768c36212b153d7233d824747923.1686661663.git.glv@posteo.net
The VDPAU_DRIVER_PATH environment variable must contain only one directory.

* gnu/packages/gl.scm (mesa)[native-search-paths]: Fix specification for
VDPAU_DRIVER_PATH.
---
gnu/packages/gl.scm | 1 +
1 file changed, 1 insertion(+)

Toggle diff (16 lines)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 9885bde712..a5b5ade22a 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -517,6 +517,7 @@ (define-public mesa
(list (search-path-specification
;; Ensure the Mesa VDPAU drivers can be found.
(variable "VDPAU_DRIVER_PATH")
+ (separator #f)
(files '("lib/vdpau")))))
(home-page "https://mesa3d.org/")
(synopsis "OpenGL and Vulkan implementations")

base-commit: b94cbbbce70f59b795526a0ed305facf041e6faa
--
2.40.1
J
J
John Kehayias wrote on 29 Jun 2023 18:03
(name . Guillaume Le Vaillant)(address . glv@posteo.net)(address . 64044@debbugs.gnu.org)
87wmzm6ytn.fsf@protonmail.com
Hi Guillaume,

On Tue, Jun 13, 2023 at 01:10 PM, Guillaume Le Vaillant wrote:

Toggle quote (23 lines)
> The VDPAU_DRIVER_PATH environment variable must contain only one directory.
>
> * gnu/packages/gl.scm (mesa)[native-search-paths]: Fix specification for
> VDPAU_DRIVER_PATH.
> ---
> gnu/packages/gl.scm | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
> index 9885bde712..a5b5ade22a 100644
> --- a/gnu/packages/gl.scm
> +++ b/gnu/packages/gl.scm
> @@ -517,6 +517,7 @@ (define-public mesa
> (list (search-path-specification
> ;; Ensure the Mesa VDPAU drivers can be found.
> (variable "VDPAU_DRIVER_PATH")
> + (separator #f)
> (files '("lib/vdpau")))))
> (home-page "https://mesa3d.org/")
> (synopsis "OpenGL and Vulkan implementations")
>
> base-commit: b94cbbbce70f59b795526a0ed305facf041e6faa

Thanks. I'm applying this on a mesa-updates branch which will appear
soon and you can see discussion on guix-devel. My plan is to have this
built with the mesa update (to 23.1.3) and then merge to master.

John
G
G
Guillaume Le Vaillant wrote on 30 Jun 2023 14:42
(name . John Kehayias)(address . john.kehayias@protonmail.com)(address . 64044@debbugs.gnu.org)
87mt0hqfx1.fsf@kitej
John Kehayias <john.kehayias@protonmail.com> skribis:

Toggle quote (4 lines)
> I'm applying this on a mesa-updates branch which will appear
> soon and you can see discussion on guix-devel. My plan is to have this
> built with the mesa update (to 23.1.3) and then merge to master.

Ok, thanks.
-----BEGIN PGP SIGNATURE-----

iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCZJ7N6g8cZ2x2QHBvc3Rl
by5uZXQACgkQa+ggit8h/j9TkAD/SHwHTcMWoppV1lhaT6asKt6sQedTTnuZcNp/
7jvhGu0A+wZWv6CVWEb9fBCgb5hKwiNqR9POteZ7kmYOe+aFa9cb
=lCSK
-----END PGP SIGNATURE-----

J
J
John Kehayias wrote on 31 Jul 2023 17:21
(name . Guillaume Le Vaillant)(address . glv@posteo.net)(address . 64044-done@debbugs.gnu.org)
878rawhzt1.fsf_-_@protonmail.com
On Fri, Jun 30, 2023 at 12:42 PM, Guillaume Le Vaillant wrote:

Toggle quote (8 lines)
> John Kehayias <john.kehayias@protonmail.com> skribis:
>
>> I'm applying this on a mesa-updates branch which will appear
>> soon and you can see discussion on guix-devel. My plan is to have this
>> built with the mesa update (to 23.1.3) and then merge to master.
>
> Ok, thanks.

Pushed as c7cf2efb7abcc7a5a7ce9606c9d876d00ddde9ad. Thanks!
Closed
?