public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Yaakov Selkowitz <yselkowi@redhat.com>
To: git-commits@fedoraproject.org
Subject: [flatpaks/flatpak-runtime] f45: Add vdpau and vulkan drivers
Date: Fri, 11 Sep 2026 14:42:57 GMT	[thread overview]
Message-ID: <178913777710.1.5305083583875146966.flatpaks-flatpak-runtime-5543375629b9@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : flatpaks/flatpak-runtime
Branch : f45
Commit : 5543375629b9edaa60cad3f84f1cc5e48bde3050
Author : Yaakov Selkowitz <yselkowi@redhat.com>
Date   : 2026-03-02T20:29:46-05:00
Stats  : +16/-1 in 4 file(s)
URL    : https://src.fedoraproject.org/flatpaks/flatpak-runtime/c/5543375629b9edaa60cad3f84f1cc5e48bde3050?branch=f45

Log:
Add vdpau and vulkan drivers

---
diff --git a/container-sdk.yaml b/container-sdk.yaml
index 701d5f2..9fa9fd8 100644
--- a/container-sdk.yaml
+++ b/container-sdk.yaml
@@ -1012,6 +1012,8 @@ flatpak:
     - mesa-libglapi
     - mesa-libGLU
     - mesa-va-drivers
+    - mesa-vdpau-drivers
+    - mesa-vulkan-drivers
     - meson
     - mlocate
     - mozjs115

diff --git a/container.yaml b/container.yaml
index 01399c2..d3c3a98 100644
--- a/container.yaml
+++ b/container.yaml
@@ -641,6 +641,8 @@ flatpak:
     - mesa-libglapi
     - mesa-libGLU
     - mesa-va-drivers
+    - mesa-vdpau-drivers
+    - mesa-vulkan-drivers
     - mlocate
     - mozjs115
     - mpdecimal

diff --git a/tools/list-files.py b/tools/list-files.py
index 7c88bee..c296df0 100755
--- a/tools/list-files.py
+++ b/tools/list-files.py
@@ -48,6 +48,8 @@ output_dir_recurse('/usr/lib/perl5/')
 output_dir_recurse('/usr/lib/x86_64-linux-gnu/alsa-lib/')
 output_dir_recurse('/usr/lib/x86_64-linux-gnu/frei0r-1/')
 output_dir_recurse('/usr/lib/x86_64-linux-gnu/GL/default/lib/dri/')
+output_dir_recurse('/usr/lib/x86_64-linux-gnu/GL/default/lib/vdpau/')
+output_dir_recurse('/usr/lib/x86_64-linux-gnu/GL/default/lib/vulkan/')
 output_dir_recurse('/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/')
 output_dir_recurse('/usr/lib/x86_64-linux-gnu/gio/modules/')
 output_dir_recurse('/usr/lib/x86_64-linux-gnu/gstreamer-1.0/')

diff --git a/tools/resolve-files.py b/tools/resolve-files.py
index 431e380..14a8d29 100755
--- a/tools/resolve-files.py
+++ b/tools/resolve-files.py
@@ -385,6 +385,11 @@ ignore_patterns = [
 
     # Monolithic driver (individual driver symlinks are detected)
     r'^/usr/lib64/GL/default/lib/dri/libgallium_.*.so',
+    r'^/usr/lib64/GL/default/lib/vdpau/libvdpau_gallium.so.*',
+    # Trace library
+    r'^/usr/lib64/GL/default/lib/vdpau/libvdpau_trace.so.*',
+    # Unversioned symlinks are not packaged
+    r'^/usr/lib64/GL/default/lib/vdpau/libvdpau_.*.so$',
 
     # Windows binaries?
     r'/usr/lib64/python[\d.]+/site-packages/setuptools/.*.exe',
@@ -436,7 +441,11 @@ rename_patterns = [
     (r'^/usr/include/ruby-[\d\.]*/x86_64-linux/ruby/(.*)', r'/usr/include/ruby/\1'),
     (r'^/usr/include/ruby-[\d\.]*/(.*)', r'/usr/include/ruby/\1'),
     (r'^/usr/include/sysprof-[\d]+/(.*)', r'/usr/include/sysprof-6/\1'),
-    (r'^/usr/lib64/GL/default/lib/dri/(.*)', r'/usr/lib64/dri/\1'),
+    (r'^/usr/lib64/GL/default/lib/(OpenCL/vendors/.*)', r'/etc/\1'),
+    (r'^/usr/lib64/GL/default/lib/(vulkan/icd.d/.*)', r'/usr/share/\1'),
+    (r'^/usr/lib64/GL/default/lib/(.*)', r'/usr/lib64/\1'),
+    (r'^/usr/lib64/GL/default/share/clc/(.*)', r'/usr/lib64/clc/\1'),
+    (r'^/usr/lib64/GL/default/share/(.*)', r'/usr/share/\1'),
     (r'^/usr/lib64/gstreamer-1.0/(gst-.*)', r'/usr/libexec/gstreamer-1.0/\1'),
     (r'^/usr/lib64/perl5/site_perl/[\d.]+/x86_64-linux/(.*)', r'/usr/lib64/perl5/\1'),
     (r'^/usr/lib64/perl5/site_perl/[\d.]+/(.*)', r'/usr/lib64/perl5/\1'),

                 reply	other threads:[~2026-09-11 14:42 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178913777710.1.5305083583875146966.flatpaks-flatpak-runtime-5543375629b9@fedoraproject.org \
    --to=yselkowi@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox